package tg
import (
"context"
"errors"
"fmt"
"sort"
"strings"
"go.uber.org/multierr"
"github.com/gotd/td/bin"
"github.com/gotd/td/tdjson"
"github.com/gotd/td/tdp"
"github.com/gotd/td/tgerr"
)
var (
_ = bin .Buffer {}
_ = context .Background ()
_ = fmt .Stringer (nil )
_ = strings .Builder {}
_ = errors .Is
_ = multierr .AppendInto
_ = sort .Ints
_ = tdp .Format
_ = tgerr .Error {}
_ = tdjson .Encoder {}
)
type LangPackStringClassArray []LangPackStringClass
func (s LangPackStringClassArray ) Sort (less func (a , b LangPackStringClass ) bool ) LangPackStringClassArray {
sort .Slice (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s LangPackStringClassArray ) SortStable (less func (a , b LangPackStringClass ) bool ) LangPackStringClassArray {
sort .SliceStable (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s LangPackStringClassArray ) Retain (keep func (x LangPackStringClass ) bool ) LangPackStringClassArray {
n := 0
for _ , x := range s {
if keep (x ) {
s [n ] = x
n ++
}
}
s = s [:n ]
return s
}
func (s LangPackStringClassArray ) First () (v LangPackStringClass , ok bool ) {
if len (s ) < 1 {
return
}
return s [0 ], true
}
func (s LangPackStringClassArray ) Last () (v LangPackStringClass , ok bool ) {
if len (s ) < 1 {
return
}
return s [len (s )-1 ], true
}
func (s *LangPackStringClassArray ) PopFirst () (v LangPackStringClass , ok bool ) {
if s == nil || len (*s ) < 1 {
return
}
a := *s
v = a [0 ]
copy (a [0 :], a [1 :])
var zero LangPackStringClass
a [len (a )-1 ] = zero
a = a [:len (a )-1 ]
*s = a
return v , true
}
func (s *LangPackStringClassArray ) Pop () (v LangPackStringClass , ok bool ) {
if s == nil || len (*s ) < 1 {
return
}
a := *s
v = a [len (a )-1 ]
a = a [:len (a )-1 ]
*s = a
return v , true
}
func (s LangPackStringClassArray ) AsLangPackString () (to LangPackStringArray ) {
for _ , elem := range s {
value , ok := elem .(*LangPackString )
if !ok {
continue
}
to = append (to , *value )
}
return to
}
func (s LangPackStringClassArray ) AsLangPackStringPluralized () (to LangPackStringPluralizedArray ) {
for _ , elem := range s {
value , ok := elem .(*LangPackStringPluralized )
if !ok {
continue
}
to = append (to , *value )
}
return to
}
func (s LangPackStringClassArray ) AsLangPackStringDeleted () (to LangPackStringDeletedArray ) {
for _ , elem := range s {
value , ok := elem .(*LangPackStringDeleted )
if !ok {
continue
}
to = append (to , *value )
}
return to
}
type LangPackStringArray []LangPackString
func (s LangPackStringArray ) Sort (less func (a , b LangPackString ) bool ) LangPackStringArray {
sort .Slice (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s LangPackStringArray ) SortStable (less func (a , b LangPackString ) bool ) LangPackStringArray {
sort .SliceStable (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s LangPackStringArray ) Retain (keep func (x LangPackString ) bool ) LangPackStringArray {
n := 0
for _ , x := range s {
if keep (x ) {
s [n ] = x
n ++
}
}
s = s [:n ]
return s
}
func (s LangPackStringArray ) First () (v LangPackString , ok bool ) {
if len (s ) < 1 {
return
}
return s [0 ], true
}
func (s LangPackStringArray ) Last () (v LangPackString , ok bool ) {
if len (s ) < 1 {
return
}
return s [len (s )-1 ], true
}
func (s *LangPackStringArray ) PopFirst () (v LangPackString , ok bool ) {
if s == nil || len (*s ) < 1 {
return
}
a := *s
v = a [0 ]
copy (a [0 :], a [1 :])
var zero LangPackString
a [len (a )-1 ] = zero
a = a [:len (a )-1 ]
*s = a
return v , true
}
func (s *LangPackStringArray ) Pop () (v LangPackString , ok bool ) {
if s == nil || len (*s ) < 1 {
return
}
a := *s
v = a [len (a )-1 ]
a = a [:len (a )-1 ]
*s = a
return v , true
}
type LangPackStringPluralizedArray []LangPackStringPluralized
func (s LangPackStringPluralizedArray ) Sort (less func (a , b LangPackStringPluralized ) bool ) LangPackStringPluralizedArray {
sort .Slice (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s LangPackStringPluralizedArray ) SortStable (less func (a , b LangPackStringPluralized ) bool ) LangPackStringPluralizedArray {
sort .SliceStable (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s LangPackStringPluralizedArray ) Retain (keep func (x LangPackStringPluralized ) bool ) LangPackStringPluralizedArray {
n := 0
for _ , x := range s {
if keep (x ) {
s [n ] = x
n ++
}
}
s = s [:n ]
return s
}
func (s LangPackStringPluralizedArray ) First () (v LangPackStringPluralized , ok bool ) {
if len (s ) < 1 {
return
}
return s [0 ], true
}
func (s LangPackStringPluralizedArray ) Last () (v LangPackStringPluralized , ok bool ) {
if len (s ) < 1 {
return
}
return s [len (s )-1 ], true
}
func (s *LangPackStringPluralizedArray ) PopFirst () (v LangPackStringPluralized , ok bool ) {
if s == nil || len (*s ) < 1 {
return
}
a := *s
v = a [0 ]
copy (a [0 :], a [1 :])
var zero LangPackStringPluralized
a [len (a )-1 ] = zero
a = a [:len (a )-1 ]
*s = a
return v , true
}
func (s *LangPackStringPluralizedArray ) Pop () (v LangPackStringPluralized , ok bool ) {
if s == nil || len (*s ) < 1 {
return
}
a := *s
v = a [len (a )-1 ]
a = a [:len (a )-1 ]
*s = a
return v , true
}
type LangPackStringDeletedArray []LangPackStringDeleted
func (s LangPackStringDeletedArray ) Sort (less func (a , b LangPackStringDeleted ) bool ) LangPackStringDeletedArray {
sort .Slice (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s LangPackStringDeletedArray ) SortStable (less func (a , b LangPackStringDeleted ) bool ) LangPackStringDeletedArray {
sort .SliceStable (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s LangPackStringDeletedArray ) Retain (keep func (x LangPackStringDeleted ) bool ) LangPackStringDeletedArray {
n := 0
for _ , x := range s {
if keep (x ) {
s [n ] = x
n ++
}
}
s = s [:n ]
return s
}
func (s LangPackStringDeletedArray ) First () (v LangPackStringDeleted , ok bool ) {
if len (s ) < 1 {
return
}
return s [0 ], true
}
func (s LangPackStringDeletedArray ) Last () (v LangPackStringDeleted , ok bool ) {
if len (s ) < 1 {
return
}
return s [len (s )-1 ], true
}
func (s *LangPackStringDeletedArray ) PopFirst () (v LangPackStringDeleted , ok bool ) {
if s == nil || len (*s ) < 1 {
return
}
a := *s
v = a [0 ]
copy (a [0 :], a [1 :])
var zero LangPackStringDeleted
a [len (a )-1 ] = zero
a = a [:len (a )-1 ]
*s = a
return v , true
}
func (s *LangPackStringDeletedArray ) Pop () (v LangPackStringDeleted , ok bool ) {
if s == nil || len (*s ) < 1 {
return
}
a := *s
v = a [len (a )-1 ]
a = a [:len (a )-1 ]
*s = a
return v , true
}
The pages are generated with Golds v0.6.7 . (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu .
PR and bug reports are welcome and can be submitted to the issue list .
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds .