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 StarGiftAuctionStateClassArray []StarGiftAuctionStateClass
func (s StarGiftAuctionStateClassArray ) Sort (less func (a , b StarGiftAuctionStateClass ) bool ) StarGiftAuctionStateClassArray {
sort .Slice (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s StarGiftAuctionStateClassArray ) SortStable (less func (a , b StarGiftAuctionStateClass ) bool ) StarGiftAuctionStateClassArray {
sort .SliceStable (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s StarGiftAuctionStateClassArray ) Retain (keep func (x StarGiftAuctionStateClass ) bool ) StarGiftAuctionStateClassArray {
n := 0
for _ , x := range s {
if keep (x ) {
s [n ] = x
n ++
}
}
s = s [:n ]
return s
}
func (s StarGiftAuctionStateClassArray ) First () (v StarGiftAuctionStateClass , ok bool ) {
if len (s ) < 1 {
return
}
return s [0 ], true
}
func (s StarGiftAuctionStateClassArray ) Last () (v StarGiftAuctionStateClass , ok bool ) {
if len (s ) < 1 {
return
}
return s [len (s )-1 ], true
}
func (s *StarGiftAuctionStateClassArray ) PopFirst () (v StarGiftAuctionStateClass , ok bool ) {
if s == nil || len (*s ) < 1 {
return
}
a := *s
v = a [0 ]
copy (a [0 :], a [1 :])
var zero StarGiftAuctionStateClass
a [len (a )-1 ] = zero
a = a [:len (a )-1 ]
*s = a
return v , true
}
func (s *StarGiftAuctionStateClassArray ) Pop () (v StarGiftAuctionStateClass , 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 StarGiftAuctionStateClassArray ) AsStarGiftAuctionState () (to StarGiftAuctionStateArray ) {
for _ , elem := range s {
value , ok := elem .(*StarGiftAuctionState )
if !ok {
continue
}
to = append (to , *value )
}
return to
}
func (s StarGiftAuctionStateClassArray ) AsStarGiftAuctionStateFinished () (to StarGiftAuctionStateFinishedArray ) {
for _ , elem := range s {
value , ok := elem .(*StarGiftAuctionStateFinished )
if !ok {
continue
}
to = append (to , *value )
}
return to
}
func (s StarGiftAuctionStateClassArray ) AppendOnlyModified (to []ModifiedStarGiftAuctionState ) []ModifiedStarGiftAuctionState {
for _ , elem := range s {
value , ok := elem .AsModified ()
if !ok {
continue
}
to = append (to , value )
}
return to
}
func (s StarGiftAuctionStateClassArray ) AsModified () (to []ModifiedStarGiftAuctionState ) {
return s .AppendOnlyModified (to )
}
func (s StarGiftAuctionStateClassArray ) FirstAsModified () (v ModifiedStarGiftAuctionState , ok bool ) {
value , ok := s .First ()
if !ok {
return
}
return value .AsModified ()
}
func (s StarGiftAuctionStateClassArray ) LastAsModified () (v ModifiedStarGiftAuctionState , ok bool ) {
value , ok := s .Last ()
if !ok {
return
}
return value .AsModified ()
}
func (s *StarGiftAuctionStateClassArray ) PopFirstAsModified () (v ModifiedStarGiftAuctionState , ok bool ) {
value , ok := s .PopFirst ()
if !ok {
return
}
return value .AsModified ()
}
func (s *StarGiftAuctionStateClassArray ) PopAsModified () (v ModifiedStarGiftAuctionState , ok bool ) {
value , ok := s .Pop ()
if !ok {
return
}
return value .AsModified ()
}
type StarGiftAuctionStateArray []StarGiftAuctionState
func (s StarGiftAuctionStateArray ) Sort (less func (a , b StarGiftAuctionState ) bool ) StarGiftAuctionStateArray {
sort .Slice (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s StarGiftAuctionStateArray ) SortStable (less func (a , b StarGiftAuctionState ) bool ) StarGiftAuctionStateArray {
sort .SliceStable (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s StarGiftAuctionStateArray ) Retain (keep func (x StarGiftAuctionState ) bool ) StarGiftAuctionStateArray {
n := 0
for _ , x := range s {
if keep (x ) {
s [n ] = x
n ++
}
}
s = s [:n ]
return s
}
func (s StarGiftAuctionStateArray ) First () (v StarGiftAuctionState , ok bool ) {
if len (s ) < 1 {
return
}
return s [0 ], true
}
func (s StarGiftAuctionStateArray ) Last () (v StarGiftAuctionState , ok bool ) {
if len (s ) < 1 {
return
}
return s [len (s )-1 ], true
}
func (s *StarGiftAuctionStateArray ) PopFirst () (v StarGiftAuctionState , ok bool ) {
if s == nil || len (*s ) < 1 {
return
}
a := *s
v = a [0 ]
copy (a [0 :], a [1 :])
var zero StarGiftAuctionState
a [len (a )-1 ] = zero
a = a [:len (a )-1 ]
*s = a
return v , true
}
func (s *StarGiftAuctionStateArray ) Pop () (v StarGiftAuctionState , 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 StarGiftAuctionStateFinishedArray []StarGiftAuctionStateFinished
func (s StarGiftAuctionStateFinishedArray ) Sort (less func (a , b StarGiftAuctionStateFinished ) bool ) StarGiftAuctionStateFinishedArray {
sort .Slice (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s StarGiftAuctionStateFinishedArray ) SortStable (less func (a , b StarGiftAuctionStateFinished ) bool ) StarGiftAuctionStateFinishedArray {
sort .SliceStable (s , func (i , j int ) bool {
return less (s [i ], s [j ])
})
return s
}
func (s StarGiftAuctionStateFinishedArray ) Retain (keep func (x StarGiftAuctionStateFinished ) bool ) StarGiftAuctionStateFinishedArray {
n := 0
for _ , x := range s {
if keep (x ) {
s [n ] = x
n ++
}
}
s = s [:n ]
return s
}
func (s StarGiftAuctionStateFinishedArray ) First () (v StarGiftAuctionStateFinished , ok bool ) {
if len (s ) < 1 {
return
}
return s [0 ], true
}
func (s StarGiftAuctionStateFinishedArray ) Last () (v StarGiftAuctionStateFinished , ok bool ) {
if len (s ) < 1 {
return
}
return s [len (s )-1 ], true
}
func (s *StarGiftAuctionStateFinishedArray ) PopFirst () (v StarGiftAuctionStateFinished , ok bool ) {
if s == nil || len (*s ) < 1 {
return
}
a := *s
v = a [0 ]
copy (a [0 :], a [1 :])
var zero StarGiftAuctionStateFinished
a [len (a )-1 ] = zero
a = a [:len (a )-1 ]
*s = a
return v , true
}
func (s *StarGiftAuctionStateFinishedArray ) Pop () (v StarGiftAuctionStateFinished , 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 .