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 BotCommandScopeClassArray []BotCommandScopeClass
func (s BotCommandScopeClassArray ) Sort (less func (a , b BotCommandScopeClass ) bool ) BotCommandScopeClassArray {
sort .Slice (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s BotCommandScopeClassArray ) SortStable (less func (a , b BotCommandScopeClass ) bool ) BotCommandScopeClassArray {
sort .SliceStable (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s BotCommandScopeClassArray ) Retain (keep func (x BotCommandScopeClass ) bool ) BotCommandScopeClassArray {
n := 0
for _ , x := range s {
if keep (x ) {
s [n ] = x
n ++
}
}
s = s [:n ]
return s
}
func (s BotCommandScopeClassArray ) First () (v BotCommandScopeClass , ok bool ) {
if len (s ) < 1 {
return
}
return s [0 ], true
}
func (s BotCommandScopeClassArray ) Last () (v BotCommandScopeClass , ok bool ) {
if len (s ) < 1 {
return
}
return s [len (s )-1 ], true
}
func (s *BotCommandScopeClassArray ) PopFirst () (v BotCommandScopeClass , ok bool ) {
if s == nil || len (*s ) < 1 {
return
}
a := *s
v = a [0 ]
copy (a [0 :], a [1 :])
var zero BotCommandScopeClass
a [len (a )-1 ] = zero
a = a [:len (a )-1 ]
*s = a
return v , true
}
func (s *BotCommandScopeClassArray ) Pop () (v BotCommandScopeClass , 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 BotCommandScopeClassArray ) AsBotCommandScopePeer () (to BotCommandScopePeerArray ) {
for _ , elem := range s {
value , ok := elem .(*BotCommandScopePeer )
if !ok {
continue
}
to = append (to , *value )
}
return to
}
func (s BotCommandScopeClassArray ) AsBotCommandScopePeerAdmins () (to BotCommandScopePeerAdminsArray ) {
for _ , elem := range s {
value , ok := elem .(*BotCommandScopePeerAdmins )
if !ok {
continue
}
to = append (to , *value )
}
return to
}
func (s BotCommandScopeClassArray ) AsBotCommandScopePeerUser () (to BotCommandScopePeerUserArray ) {
for _ , elem := range s {
value , ok := elem .(*BotCommandScopePeerUser )
if !ok {
continue
}
to = append (to , *value )
}
return to
}
type BotCommandScopePeerArray []BotCommandScopePeer
func (s BotCommandScopePeerArray ) Sort (less func (a , b BotCommandScopePeer ) bool ) BotCommandScopePeerArray {
sort .Slice (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s BotCommandScopePeerArray ) SortStable (less func (a , b BotCommandScopePeer ) bool ) BotCommandScopePeerArray {
sort .SliceStable (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s BotCommandScopePeerArray ) Retain (keep func (x BotCommandScopePeer ) bool ) BotCommandScopePeerArray {
n := 0
for _ , x := range s {
if keep (x ) {
s [n ] = x
n ++
}
}
s = s [:n ]
return s
}
func (s BotCommandScopePeerArray ) First () (v BotCommandScopePeer , ok bool ) {
if len (s ) < 1 {
return
}
return s [0 ], true
}
func (s BotCommandScopePeerArray ) Last () (v BotCommandScopePeer , ok bool ) {
if len (s ) < 1 {
return
}
return s [len (s )-1 ], true
}
func (s *BotCommandScopePeerArray ) PopFirst () (v BotCommandScopePeer , ok bool ) {
if s == nil || len (*s ) < 1 {
return
}
a := *s
v = a [0 ]
copy (a [0 :], a [1 :])
var zero BotCommandScopePeer
a [len (a )-1 ] = zero
a = a [:len (a )-1 ]
*s = a
return v , true
}
func (s *BotCommandScopePeerArray ) Pop () (v BotCommandScopePeer , 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 BotCommandScopePeerAdminsArray []BotCommandScopePeerAdmins
func (s BotCommandScopePeerAdminsArray ) Sort (less func (a , b BotCommandScopePeerAdmins ) bool ) BotCommandScopePeerAdminsArray {
sort .Slice (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s BotCommandScopePeerAdminsArray ) SortStable (less func (a , b BotCommandScopePeerAdmins ) bool ) BotCommandScopePeerAdminsArray {
sort .SliceStable (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s BotCommandScopePeerAdminsArray ) Retain (keep func (x BotCommandScopePeerAdmins ) bool ) BotCommandScopePeerAdminsArray {
n := 0
for _ , x := range s {
if keep (x ) {
s [n ] = x
n ++
}
}
s = s [:n ]
return s
}
func (s BotCommandScopePeerAdminsArray ) First () (v BotCommandScopePeerAdmins , ok bool ) {
if len (s ) < 1 {
return
}
return s [0 ], true
}
func (s BotCommandScopePeerAdminsArray ) Last () (v BotCommandScopePeerAdmins , ok bool ) {
if len (s ) < 1 {
return
}
return s [len (s )-1 ], true
}
func (s *BotCommandScopePeerAdminsArray ) PopFirst () (v BotCommandScopePeerAdmins , ok bool ) {
if s == nil || len (*s ) < 1 {
return
}
a := *s
v = a [0 ]
copy (a [0 :], a [1 :])
var zero BotCommandScopePeerAdmins
a [len (a )-1 ] = zero
a = a [:len (a )-1 ]
*s = a
return v , true
}
func (s *BotCommandScopePeerAdminsArray ) Pop () (v BotCommandScopePeerAdmins , 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 BotCommandScopePeerUserArray []BotCommandScopePeerUser
func (s BotCommandScopePeerUserArray ) Sort (less func (a , b BotCommandScopePeerUser ) bool ) BotCommandScopePeerUserArray {
sort .Slice (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s BotCommandScopePeerUserArray ) SortStable (less func (a , b BotCommandScopePeerUser ) bool ) BotCommandScopePeerUserArray {
sort .SliceStable (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s BotCommandScopePeerUserArray ) Retain (keep func (x BotCommandScopePeerUser ) bool ) BotCommandScopePeerUserArray {
n := 0
for _ , x := range s {
if keep (x ) {
s [n ] = x
n ++
}
}
s = s [:n ]
return s
}
func (s BotCommandScopePeerUserArray ) First () (v BotCommandScopePeerUser , ok bool ) {
if len (s ) < 1 {
return
}
return s [0 ], true
}
func (s BotCommandScopePeerUserArray ) Last () (v BotCommandScopePeerUser , ok bool ) {
if len (s ) < 1 {
return
}
return s [len (s )-1 ], true
}
func (s *BotCommandScopePeerUserArray ) PopFirst () (v BotCommandScopePeerUser , ok bool ) {
if s == nil || len (*s ) < 1 {
return
}
a := *s
v = a [0 ]
copy (a [0 :], a [1 :])
var zero BotCommandScopePeerUser
a [len (a )-1 ] = zero
a = a [:len (a )-1 ]
*s = a
return v , true
}
func (s *BotCommandScopePeerUserArray ) Pop () (v BotCommandScopePeerUser , 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 .