💾 Archived View for code.pfad.fr › swift › format captured on 2023-06-14 at 14:08:51. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2023-04-19)
-=-=-=-=-=-=-
import "code.pfad.fr/swift/format"
type Alpha int // (A-Z)
func (Alpha) Expected() string
func (Alpha) IndexInvalid(s string) int
func (l Alpha) Len() int
type AlphaInsensitive int // (a-z, A-Z)
func (AlphaInsensitive) Expected() string
func (AlphaInsensitive) IndexInvalid(s string) int
func (l AlphaInsensitive) Len() int
type Column interface { Len() int Expected() string IndexInvalid(s string) int // returns -1 if the string is valid }
type Mixed int // (a–z, A–Z, 0–9)
func (Mixed) Expected() string
func (Mixed) IndexInvalid(s string) int
func (l Mixed) Len() int
type Numeric int // (0-9)
func (Numeric) Expected() string
func (Numeric) IndexInvalid(s string) int
func (l Numeric) Len() int
https://codeberg.org/pfad.fr/swift
git clone
https://codeberg.org/pfad.fr/swift git@codeberg.org:pfad.fr/swift