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