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 InputRichFileClassArray []InputRichFileClass
func (s InputRichFileClassArray ) Sort (less func (a , b InputRichFileClass ) bool ) InputRichFileClassArray {
sort .Slice (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s InputRichFileClassArray ) SortStable (less func (a , b InputRichFileClass ) bool ) InputRichFileClassArray {
sort .SliceStable (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s InputRichFileClassArray ) Retain (keep func (x InputRichFileClass ) bool ) InputRichFileClassArray {
n := 0
for _ , x := range s {
if keep (x ) {
s [n ] = x
n ++
}
}
s = s [:n ]
return s
}
func (s InputRichFileClassArray ) First () (v InputRichFileClass , ok bool ) {
if len (s ) < 1 {
return
}
return s [0 ], true
}
func (s InputRichFileClassArray ) Last () (v InputRichFileClass , ok bool ) {
if len (s ) < 1 {
return
}
return s [len (s )-1 ], true
}
func (s *InputRichFileClassArray ) PopFirst () (v InputRichFileClass , ok bool ) {
if s == nil || len (*s ) < 1 {
return
}
a := *s
v = a [0 ]
copy (a [0 :], a [1 :])
var zero InputRichFileClass
a [len (a )-1 ] = zero
a = a [:len (a )-1 ]
*s = a
return v , true
}
func (s *InputRichFileClassArray ) Pop () (v InputRichFileClass , 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 InputRichFileClassArray ) AsInputRichFilePhoto () (to InputRichFilePhotoArray ) {
for _ , elem := range s {
value , ok := elem .(*InputRichFilePhoto )
if !ok {
continue
}
to = append (to , *value )
}
return to
}
func (s InputRichFileClassArray ) AsInputRichFileDocument () (to InputRichFileDocumentArray ) {
for _ , elem := range s {
value , ok := elem .(*InputRichFileDocument )
if !ok {
continue
}
to = append (to , *value )
}
return to
}
type InputRichFilePhotoArray []InputRichFilePhoto
func (s InputRichFilePhotoArray ) Sort (less func (a , b InputRichFilePhoto ) bool ) InputRichFilePhotoArray {
sort .Slice (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s InputRichFilePhotoArray ) SortStable (less func (a , b InputRichFilePhoto ) bool ) InputRichFilePhotoArray {
sort .SliceStable (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s InputRichFilePhotoArray ) Retain (keep func (x InputRichFilePhoto ) bool ) InputRichFilePhotoArray {
n := 0
for _ , x := range s {
if keep (x ) {
s [n ] = x
n ++
}
}
s = s [:n ]
return s
}
func (s InputRichFilePhotoArray ) First () (v InputRichFilePhoto , ok bool ) {
if len (s ) < 1 {
return
}
return s [0 ], true
}
func (s InputRichFilePhotoArray ) Last () (v InputRichFilePhoto , ok bool ) {
if len (s ) < 1 {
return
}
return s [len (s )-1 ], true
}
func (s *InputRichFilePhotoArray ) PopFirst () (v InputRichFilePhoto , ok bool ) {
if s == nil || len (*s ) < 1 {
return
}
a := *s
v = a [0 ]
copy (a [0 :], a [1 :])
var zero InputRichFilePhoto
a [len (a )-1 ] = zero
a = a [:len (a )-1 ]
*s = a
return v , true
}
func (s *InputRichFilePhotoArray ) Pop () (v InputRichFilePhoto , 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 InputRichFileDocumentArray []InputRichFileDocument
func (s InputRichFileDocumentArray ) Sort (less func (a , b InputRichFileDocument ) bool ) InputRichFileDocumentArray {
sort .Slice (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s InputRichFileDocumentArray ) SortStable (less func (a , b InputRichFileDocument ) bool ) InputRichFileDocumentArray {
sort .SliceStable (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s InputRichFileDocumentArray ) Retain (keep func (x InputRichFileDocument ) bool ) InputRichFileDocumentArray {
n := 0
for _ , x := range s {
if keep (x ) {
s [n ] = x
n ++
}
}
s = s [:n ]
return s
}
func (s InputRichFileDocumentArray ) First () (v InputRichFileDocument , ok bool ) {
if len (s ) < 1 {
return
}
return s [0 ], true
}
func (s InputRichFileDocumentArray ) Last () (v InputRichFileDocument , ok bool ) {
if len (s ) < 1 {
return
}
return s [len (s )-1 ], true
}
func (s *InputRichFileDocumentArray ) PopFirst () (v InputRichFileDocument , ok bool ) {
if s == nil || len (*s ) < 1 {
return
}
a := *s
v = a [0 ]
copy (a [0 :], a [1 :])
var zero InputRichFileDocument
a [len (a )-1 ] = zero
a = a [:len (a )-1 ]
*s = a
return v , true
}
func (s *InputRichFileDocumentArray ) Pop () (v InputRichFileDocument , 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.8.4 . (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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds .