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