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 InputWebFileLocationClassArray []InputWebFileLocationClass
func (s InputWebFileLocationClassArray ) Sort (less func (a , b InputWebFileLocationClass ) bool ) InputWebFileLocationClassArray {
sort .Slice (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s InputWebFileLocationClassArray ) SortStable (less func (a , b InputWebFileLocationClass ) bool ) InputWebFileLocationClassArray {
sort .SliceStable (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s InputWebFileLocationClassArray ) Retain (keep func (x InputWebFileLocationClass ) bool ) InputWebFileLocationClassArray {
n := 0
for _ , x := range s {
if keep (x ) {
s [n ] = x
n ++
}
}
s = s [:n ]
return s
}
func (s InputWebFileLocationClassArray ) First () (v InputWebFileLocationClass , ok bool ) {
if len (s ) < 1 {
return
}
return s [0 ], true
}
func (s InputWebFileLocationClassArray ) Last () (v InputWebFileLocationClass , ok bool ) {
if len (s ) < 1 {
return
}
return s [len (s )-1 ], true
}
func (s *InputWebFileLocationClassArray ) PopFirst () (v InputWebFileLocationClass , ok bool ) {
if s == nil || len (*s ) < 1 {
return
}
a := *s
v = a [0 ]
copy (a [0 :], a [1 :])
var zero InputWebFileLocationClass
a [len (a )-1 ] = zero
a = a [:len (a )-1 ]
*s = a
return v , true
}
func (s *InputWebFileLocationClassArray ) Pop () (v InputWebFileLocationClass , 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 InputWebFileLocationClassArray ) AsInputWebFileLocation () (to InputWebFileLocationArray ) {
for _ , elem := range s {
value , ok := elem .(*InputWebFileLocation )
if !ok {
continue
}
to = append (to , *value )
}
return to
}
func (s InputWebFileLocationClassArray ) AsInputWebFileGeoPointLocation () (to InputWebFileGeoPointLocationArray ) {
for _ , elem := range s {
value , ok := elem .(*InputWebFileGeoPointLocation )
if !ok {
continue
}
to = append (to , *value )
}
return to
}
func (s InputWebFileLocationClassArray ) AsInputWebFileAudioAlbumThumbLocation () (to InputWebFileAudioAlbumThumbLocationArray ) {
for _ , elem := range s {
value , ok := elem .(*InputWebFileAudioAlbumThumbLocation )
if !ok {
continue
}
to = append (to , *value )
}
return to
}
type InputWebFileLocationArray []InputWebFileLocation
func (s InputWebFileLocationArray ) Sort (less func (a , b InputWebFileLocation ) bool ) InputWebFileLocationArray {
sort .Slice (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s InputWebFileLocationArray ) SortStable (less func (a , b InputWebFileLocation ) bool ) InputWebFileLocationArray {
sort .SliceStable (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s InputWebFileLocationArray ) Retain (keep func (x InputWebFileLocation ) bool ) InputWebFileLocationArray {
n := 0
for _ , x := range s {
if keep (x ) {
s [n ] = x
n ++
}
}
s = s [:n ]
return s
}
func (s InputWebFileLocationArray ) First () (v InputWebFileLocation , ok bool ) {
if len (s ) < 1 {
return
}
return s [0 ], true
}
func (s InputWebFileLocationArray ) Last () (v InputWebFileLocation , ok bool ) {
if len (s ) < 1 {
return
}
return s [len (s )-1 ], true
}
func (s *InputWebFileLocationArray ) PopFirst () (v InputWebFileLocation , ok bool ) {
if s == nil || len (*s ) < 1 {
return
}
a := *s
v = a [0 ]
copy (a [0 :], a [1 :])
var zero InputWebFileLocation
a [len (a )-1 ] = zero
a = a [:len (a )-1 ]
*s = a
return v , true
}
func (s *InputWebFileLocationArray ) Pop () (v InputWebFileLocation , 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 InputWebFileGeoPointLocationArray []InputWebFileGeoPointLocation
func (s InputWebFileGeoPointLocationArray ) Sort (less func (a , b InputWebFileGeoPointLocation ) bool ) InputWebFileGeoPointLocationArray {
sort .Slice (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s InputWebFileGeoPointLocationArray ) SortStable (less func (a , b InputWebFileGeoPointLocation ) bool ) InputWebFileGeoPointLocationArray {
sort .SliceStable (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s InputWebFileGeoPointLocationArray ) Retain (keep func (x InputWebFileGeoPointLocation ) bool ) InputWebFileGeoPointLocationArray {
n := 0
for _ , x := range s {
if keep (x ) {
s [n ] = x
n ++
}
}
s = s [:n ]
return s
}
func (s InputWebFileGeoPointLocationArray ) First () (v InputWebFileGeoPointLocation , ok bool ) {
if len (s ) < 1 {
return
}
return s [0 ], true
}
func (s InputWebFileGeoPointLocationArray ) Last () (v InputWebFileGeoPointLocation , ok bool ) {
if len (s ) < 1 {
return
}
return s [len (s )-1 ], true
}
func (s *InputWebFileGeoPointLocationArray ) PopFirst () (v InputWebFileGeoPointLocation , ok bool ) {
if s == nil || len (*s ) < 1 {
return
}
a := *s
v = a [0 ]
copy (a [0 :], a [1 :])
var zero InputWebFileGeoPointLocation
a [len (a )-1 ] = zero
a = a [:len (a )-1 ]
*s = a
return v , true
}
func (s *InputWebFileGeoPointLocationArray ) Pop () (v InputWebFileGeoPointLocation , 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 InputWebFileAudioAlbumThumbLocationArray []InputWebFileAudioAlbumThumbLocation
func (s InputWebFileAudioAlbumThumbLocationArray ) Sort (less func (a , b InputWebFileAudioAlbumThumbLocation ) bool ) InputWebFileAudioAlbumThumbLocationArray {
sort .Slice (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s InputWebFileAudioAlbumThumbLocationArray ) SortStable (less func (a , b InputWebFileAudioAlbumThumbLocation ) bool ) InputWebFileAudioAlbumThumbLocationArray {
sort .SliceStable (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s InputWebFileAudioAlbumThumbLocationArray ) Retain (keep func (x InputWebFileAudioAlbumThumbLocation ) bool ) InputWebFileAudioAlbumThumbLocationArray {
n := 0
for _ , x := range s {
if keep (x ) {
s [n ] = x
n ++
}
}
s = s [:n ]
return s
}
func (s InputWebFileAudioAlbumThumbLocationArray ) First () (v InputWebFileAudioAlbumThumbLocation , ok bool ) {
if len (s ) < 1 {
return
}
return s [0 ], true
}
func (s InputWebFileAudioAlbumThumbLocationArray ) Last () (v InputWebFileAudioAlbumThumbLocation , ok bool ) {
if len (s ) < 1 {
return
}
return s [len (s )-1 ], true
}
func (s *InputWebFileAudioAlbumThumbLocationArray ) PopFirst () (v InputWebFileAudioAlbumThumbLocation , ok bool ) {
if s == nil || len (*s ) < 1 {
return
}
a := *s
v = a [0 ]
copy (a [0 :], a [1 :])
var zero InputWebFileAudioAlbumThumbLocation
a [len (a )-1 ] = zero
a = a [:len (a )-1 ]
*s = a
return v , true
}
func (s *InputWebFileAudioAlbumThumbLocationArray ) Pop () (v InputWebFileAudioAlbumThumbLocation , 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 .