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