Documentation ¶
Overview ¶
This file has automatically been generated on Wed Feb 26 15:50:52 +05 2020. DO NOT EDIT.
Index ¶
- func BuilderCap(b *strings.Builder) int
- func BuilderLen(b *strings.Builder) int
- func BuilderString(b *strings.Builder) string
- func BuilderWrite(b *strings.Builder, p []byte) (int, error)
- func BuilderWriteByte(b *strings.Builder, c byte) error
- func BuilderWriteRune(b *strings.Builder, r rune) (int, error)
- func BuilderWriteString(b *strings.Builder, s string) (int, error)
- func Compare(a, b string) int
- func Contains(s, substr string) bool
- func ContainsAny(s, chars string) bool
- func ContainsRune(s string, r rune) bool
- func Count(s, substr string) int
- func EqualFold(s, t string) bool
- func Fields(s string) []string
- func FieldsFunc(s string, f func(rune) bool) []string
- func HasPrefix(s, prefix string) bool
- func HasSuffix(s, suffix string) bool
- func Index(s, substr string) int
- func IndexAny(s, chars string) int
- func IndexByte(s string, c byte) int
- func IndexFunc(s string, f func(rune) bool) int
- func IndexRune(s string, r rune) int
- func Join(elems []string, sep string) string
- func LastIndex(s, substr string) int
- func LastIndexAny(s, chars string) int
- func LastIndexByte(s string, c byte) int
- func LastIndexFunc(s string, f func(rune) bool) int
- func Map(mapping func(rune) rune, s string) string
- func NewReader(s string) *strings.Reader
- func NewReplacer(oldnew ...string) *strings.Replacer
- func ReaderLen(r *strings.Reader) int
- func ReaderRead(r *strings.Reader, b []byte) (int, error)
- func ReaderReadAt(r *strings.Reader, b []byte, off int64) (int, error)
- func ReaderReadByte(r *strings.Reader) (byte, error)
- func ReaderReadRune(r *strings.Reader) (rune, int, error)
- func ReaderSeek(r *strings.Reader, offset int64, whence int) (int64, error)
- func ReaderSize(r *strings.Reader) int64
- func ReaderUnreadByte(r *strings.Reader) error
- func ReaderUnreadRune(r *strings.Reader) error
- func ReaderWriteTo(r *strings.Reader, w io.Writer) (int64, error)
- func Repeat(s string, count int) string
- func Replace(s, old, new string, n int) string
- func ReplaceAll(s, old, new string) string
- func ReplacerReplace(r *strings.Replacer, s string) string
- func ReplacerWriteString(r *strings.Replacer, w io.Writer, s string) (int, error)
- func Split(s, sep string) []string
- func SplitAfter(s, sep string) []string
- func SplitAfterN(s, sep string, n int) []string
- func SplitN(s, sep string, n int) []string
- func Title(s string) string
- func ToLower(s string) string
- func ToLowerSpecial(c unicode.SpecialCase, s string) string
- func ToTitle(s string) string
- func ToTitleSpecial(c unicode.SpecialCase, s string) string
- func ToUpper(s string) string
- func ToUpperSpecial(c unicode.SpecialCase, s string) string
- func Trim(s string, cutset string) string
- func TrimFunc(s string, f func(rune) bool) string
- func TrimLeft(s string, cutset string) string
- func TrimLeftFunc(s string, f func(rune) bool) string
- func TrimPrefix(s, prefix string) string
- func TrimRight(s string, cutset string) string
- func TrimRightFunc(s string, f func(rune) bool) string
- func TrimSpace(s string) string
- func TrimSuffix(s, suffix string) string
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func BuilderCap ¶
func BuilderLen ¶
func BuilderString ¶
func ContainsAny ¶
func ContainsRune ¶
func LastIndexAny ¶
func LastIndexByte ¶
func NewReplacer ¶
func ReaderSize ¶
func ReaderUnreadByte ¶
func ReaderUnreadRune ¶
func ReplaceAll ¶
func ReplacerWriteString ¶
func SplitAfter ¶
func SplitAfterN ¶
func ToLowerSpecial ¶
func ToLowerSpecial(c unicode.SpecialCase, s string) string
func ToTitleSpecial ¶
func ToTitleSpecial(c unicode.SpecialCase, s string) string
func ToUpperSpecial ¶
func ToUpperSpecial(c unicode.SpecialCase, s string) string
func TrimPrefix ¶
func TrimSuffix ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.