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 EncryptedFileClassArray []EncryptedFileClass
func (s EncryptedFileClassArray ) Sort (less func (a , b EncryptedFileClass ) bool ) EncryptedFileClassArray {
sort .Slice (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s EncryptedFileClassArray ) SortStable (less func (a , b EncryptedFileClass ) bool ) EncryptedFileClassArray {
sort .SliceStable (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s EncryptedFileClassArray ) Retain (keep func (x EncryptedFileClass ) bool ) EncryptedFileClassArray {
n := 0
for _ , x := range s {
if keep (x ) {
s [n ] = x
n ++
}
}
s = s [:n ]
return s
}
func (s EncryptedFileClassArray ) First () (v EncryptedFileClass , ok bool ) {
if len (s ) < 1 {
return
}
return s [0 ], true
}
func (s EncryptedFileClassArray ) Last () (v EncryptedFileClass , ok bool ) {
if len (s ) < 1 {
return
}
return s [len (s )-1 ], true
}
func (s *EncryptedFileClassArray ) PopFirst () (v EncryptedFileClass , ok bool ) {
if s == nil || len (*s ) < 1 {
return
}
a := *s
v = a [0 ]
copy (a [0 :], a [1 :])
var zero EncryptedFileClass
a [len (a )-1 ] = zero
a = a [:len (a )-1 ]
*s = a
return v , true
}
func (s *EncryptedFileClassArray ) Pop () (v EncryptedFileClass , 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 EncryptedFileClassArray ) AsEncryptedFile () (to EncryptedFileArray ) {
for _ , elem := range s {
value , ok := elem .(*EncryptedFile )
if !ok {
continue
}
to = append (to , *value )
}
return to
}
func (s EncryptedFileClassArray ) FillNotEmptyMap (to map [int64 ]*EncryptedFile ) {
for _ , elem := range s {
value , ok := elem .AsNotEmpty ()
if !ok {
continue
}
to [value .GetID ()] = value
}
}
func (s EncryptedFileClassArray ) NotEmptyToMap () map [int64 ]*EncryptedFile {
r := make (map [int64 ]*EncryptedFile , len (s ))
s .FillNotEmptyMap (r )
return r
}
func (s EncryptedFileClassArray ) AppendOnlyNotEmpty (to []*EncryptedFile ) []*EncryptedFile {
for _ , elem := range s {
value , ok := elem .AsNotEmpty ()
if !ok {
continue
}
to = append (to , value )
}
return to
}
func (s EncryptedFileClassArray ) AsNotEmpty () (to []*EncryptedFile ) {
return s .AppendOnlyNotEmpty (to )
}
func (s EncryptedFileClassArray ) FirstAsNotEmpty () (v *EncryptedFile , ok bool ) {
value , ok := s .First ()
if !ok {
return
}
return value .AsNotEmpty ()
}
func (s EncryptedFileClassArray ) LastAsNotEmpty () (v *EncryptedFile , ok bool ) {
value , ok := s .Last ()
if !ok {
return
}
return value .AsNotEmpty ()
}
func (s *EncryptedFileClassArray ) PopFirstAsNotEmpty () (v *EncryptedFile , ok bool ) {
value , ok := s .PopFirst ()
if !ok {
return
}
return value .AsNotEmpty ()
}
func (s *EncryptedFileClassArray ) PopAsNotEmpty () (v *EncryptedFile , ok bool ) {
value , ok := s .Pop ()
if !ok {
return
}
return value .AsNotEmpty ()
}
type EncryptedFileArray []EncryptedFile
func (s EncryptedFileArray ) Sort (less func (a , b EncryptedFile ) bool ) EncryptedFileArray {
sort .Slice (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s EncryptedFileArray ) SortStable (less func (a , b EncryptedFile ) bool ) EncryptedFileArray {
sort .SliceStable (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s EncryptedFileArray ) Retain (keep func (x EncryptedFile ) bool ) EncryptedFileArray {
n := 0
for _ , x := range s {
if keep (x ) {
s [n ] = x
n ++
}
}
s = s [:n ]
return s
}
func (s EncryptedFileArray ) First () (v EncryptedFile , ok bool ) {
if len (s ) < 1 {
return
}
return s [0 ], true
}
func (s EncryptedFileArray ) Last () (v EncryptedFile , ok bool ) {
if len (s ) < 1 {
return
}
return s [len (s )-1 ], true
}
func (s *EncryptedFileArray ) PopFirst () (v EncryptedFile , ok bool ) {
if s == nil || len (*s ) < 1 {
return
}
a := *s
v = a [0 ]
copy (a [0 :], a [1 :])
var zero EncryptedFile
a [len (a )-1 ] = zero
a = a [:len (a )-1 ]
*s = a
return v , true
}
func (s *EncryptedFileArray ) Pop () (v EncryptedFile , 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 EncryptedFileArray ) SortByID () EncryptedFileArray {
return s .Sort (func (a , b EncryptedFile ) bool {
return a .GetID () < b .GetID ()
})
}
func (s EncryptedFileArray ) SortStableByID () EncryptedFileArray {
return s .SortStable (func (a , b EncryptedFile ) bool {
return a .GetID () < b .GetID ()
})
}
func (s EncryptedFileArray ) FillMap (to map [int64 ]EncryptedFile ) {
for _ , value := range s {
to [value .GetID ()] = value
}
}
func (s EncryptedFileArray ) ToMap () map [int64 ]EncryptedFile {
r := make (map [int64 ]EncryptedFile , len (s ))
s .FillMap (r )
return r
}
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 .