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