Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type MagicNamedParamsAndResults ¶ added in v0.0.9
type MagicNamedParamsAndResults interface {
Method1(a string, b *int, c []byte) (s string, err error)
}
misura:MagicNamedParamsAndResults
type MagicNoParams ¶ added in v0.0.9
type MagicNoParams interface {
Method1() error
Method2() (s string, err error)
Method3() (string, error)
}
misura:MagicNoParams
type MagicNoResult ¶ added in v0.0.9
type MagicNoResult interface {
Method1(s string)
Method2(n int)
Method3(a, b, c int, s string)
Method4(a, _, c int, _ string)
}
misura:MagicNoResult
type MagicUnderscoreNames ¶ added in v0.0.9
type MagicUnderscoreNames interface {
Method1(_ string, b *int, c []byte) (s string, err error)
Method2(a string, _ *int, c []byte) (s string, err error)
Method3(a string, b *int, _ []byte) (s string, err error)
Method4(a string, b *int, c []byte) (_ string, err error)
Method5(a string, b *int, c []byte) (s string, _ error)
Method6(_ string, b *int, _ []byte) (s string, _ error)
Method7(_ string, _ *int, _ []byte) (s string, _ error)
Method8(_ string, _ *int, _ []byte) (_ string, _ error)
}
misura:MagicUnderscoreNames
type MagicUnnamedAndNamedParamsAndResults ¶ added in v0.0.9
type MagicUnnamedAndNamedParamsAndResults interface {
Method1(a string, b *int, c []byte) (s string, err error)
Method2(a string, b *int, c []byte) (string, error)
Method3(string, *int, []byte) (string, error)
Method4(string, *int, []byte) (s string, err error)
}
misura:MagicUnnamedAndNamedParamsAndResults
type NamedParamsAndResults ¶
type UnderscoreNames ¶
type UnderscoreNames interface {
Method1(_ string, b *int, c []byte) (s string, err error)
Method2(a string, _ *int, c []byte) (s string, err error)
Method3(a string, b *int, _ []byte) (s string, err error)
Method4(a string, b *int, c []byte) (_ string, err error)
Method5(a string, b *int, c []byte) (s string, _ error)
Method6(_ string, b *int, _ []byte) (s string, _ error)
Method7(_ string, _ *int, _ []byte) (s string, _ error)
Method8(_ string, _ *int, _ []byte) (_ string, _ error)
}
Click to show internal directories.
Click to hide internal directories.