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