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 ContactsBlockedClassArray []ContactsBlockedClass
func (s ContactsBlockedClassArray ) Sort (less func (a , b ContactsBlockedClass ) bool ) ContactsBlockedClassArray {
sort .Slice (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s ContactsBlockedClassArray ) SortStable (less func (a , b ContactsBlockedClass ) bool ) ContactsBlockedClassArray {
sort .SliceStable (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s ContactsBlockedClassArray ) Retain (keep func (x ContactsBlockedClass ) bool ) ContactsBlockedClassArray {
n := 0
for _ , x := range s {
if keep (x ) {
s [n ] = x
n ++
}
}
s = s [:n ]
return s
}
func (s ContactsBlockedClassArray ) First () (v ContactsBlockedClass , ok bool ) {
if len (s ) < 1 {
return
}
return s [0 ], true
}
func (s ContactsBlockedClassArray ) Last () (v ContactsBlockedClass , ok bool ) {
if len (s ) < 1 {
return
}
return s [len (s )-1 ], true
}
func (s *ContactsBlockedClassArray ) PopFirst () (v ContactsBlockedClass , ok bool ) {
if s == nil || len (*s ) < 1 {
return
}
a := *s
v = a [0 ]
copy (a [0 :], a [1 :])
var zero ContactsBlockedClass
a [len (a )-1 ] = zero
a = a [:len (a )-1 ]
*s = a
return v , true
}
func (s *ContactsBlockedClassArray ) Pop () (v ContactsBlockedClass , 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 ContactsBlockedClassArray ) AsContactsBlocked () (to ContactsBlockedArray ) {
for _ , elem := range s {
value , ok := elem .(*ContactsBlocked )
if !ok {
continue
}
to = append (to , *value )
}
return to
}
func (s ContactsBlockedClassArray ) AsContactsBlockedSlice () (to ContactsBlockedSliceArray ) {
for _ , elem := range s {
value , ok := elem .(*ContactsBlockedSlice )
if !ok {
continue
}
to = append (to , *value )
}
return to
}
type ContactsBlockedArray []ContactsBlocked
func (s ContactsBlockedArray ) Sort (less func (a , b ContactsBlocked ) bool ) ContactsBlockedArray {
sort .Slice (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s ContactsBlockedArray ) SortStable (less func (a , b ContactsBlocked ) bool ) ContactsBlockedArray {
sort .SliceStable (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s ContactsBlockedArray ) Retain (keep func (x ContactsBlocked ) bool ) ContactsBlockedArray {
n := 0
for _ , x := range s {
if keep (x ) {
s [n ] = x
n ++
}
}
s = s [:n ]
return s
}
func (s ContactsBlockedArray ) First () (v ContactsBlocked , ok bool ) {
if len (s ) < 1 {
return
}
return s [0 ], true
}
func (s ContactsBlockedArray ) Last () (v ContactsBlocked , ok bool ) {
if len (s ) < 1 {
return
}
return s [len (s )-1 ], true
}
func (s *ContactsBlockedArray ) PopFirst () (v ContactsBlocked , ok bool ) {
if s == nil || len (*s ) < 1 {
return
}
a := *s
v = a [0 ]
copy (a [0 :], a [1 :])
var zero ContactsBlocked
a [len (a )-1 ] = zero
a = a [:len (a )-1 ]
*s = a
return v , true
}
func (s *ContactsBlockedArray ) Pop () (v ContactsBlocked , 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 ContactsBlockedSliceArray []ContactsBlockedSlice
func (s ContactsBlockedSliceArray ) Sort (less func (a , b ContactsBlockedSlice ) bool ) ContactsBlockedSliceArray {
sort .Slice (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s ContactsBlockedSliceArray ) SortStable (less func (a , b ContactsBlockedSlice ) bool ) ContactsBlockedSliceArray {
sort .SliceStable (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s ContactsBlockedSliceArray ) Retain (keep func (x ContactsBlockedSlice ) bool ) ContactsBlockedSliceArray {
n := 0
for _ , x := range s {
if keep (x ) {
s [n ] = x
n ++
}
}
s = s [:n ]
return s
}
func (s ContactsBlockedSliceArray ) First () (v ContactsBlockedSlice , ok bool ) {
if len (s ) < 1 {
return
}
return s [0 ], true
}
func (s ContactsBlockedSliceArray ) Last () (v ContactsBlockedSlice , ok bool ) {
if len (s ) < 1 {
return
}
return s [len (s )-1 ], true
}
func (s *ContactsBlockedSliceArray ) PopFirst () (v ContactsBlockedSlice , ok bool ) {
if s == nil || len (*s ) < 1 {
return
}
a := *s
v = a [0 ]
copy (a [0 :], a [1 :])
var zero ContactsBlockedSlice
a [len (a )-1 ] = zero
a = a [:len (a )-1 ]
*s = a
return v , true
}
func (s *ContactsBlockedSliceArray ) Pop () (v ContactsBlockedSlice , 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 .