import "code.pfad.fr/swift/internal/format"
package format is used internally to describe the format of an IBAN.
const ( NoMoreChar = iota + 1 UppercaseAlphaChar AlphaChar ExpectedNumericChar ExpectedAlphaNumericChar )
func (Alpha) Expected() ExpectedCharType
func (AlphaInsensitive) Expected() ExpectedCharType
func (AlphaInsensitive) IndexInvalid(s string) int
func (l AlphaInsensitive) Len() int
type Column interface { Len() int Expected() ExpectedCharType IndexInvalid(s string) int // returns -1 if the string is valid }
func (e ExpectedCharType) String() string
func (Mixed) Expected() ExpectedCharType
func (Numeric) Expected() ExpectedCharType