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 StarsGiftOptionVector struct {
Elems []StarsGiftOption
}
const StarsGiftOptionVectorTypeID = bin .TypeVector
var (
_ bin .Encoder = &StarsGiftOptionVector {}
_ bin .Decoder = &StarsGiftOptionVector {}
_ bin .BareEncoder = &StarsGiftOptionVector {}
_ bin .BareDecoder = &StarsGiftOptionVector {}
)
func (vec *StarsGiftOptionVector ) Zero () bool {
if vec == nil {
return true
}
if !(vec .Elems == nil ) {
return false
}
return true
}
func (vec *StarsGiftOptionVector ) String () string {
if vec == nil {
return "StarsGiftOptionVector(nil)"
}
type Alias StarsGiftOptionVector
return fmt .Sprintf ("StarsGiftOptionVector%+v" , Alias (*vec ))
}
func (vec *StarsGiftOptionVector ) FillFrom (from interface {
GetElems () (value []StarsGiftOption )
}) {
vec .Elems = from .GetElems ()
}
func (*StarsGiftOptionVector ) TypeID () uint32 {
return StarsGiftOptionVectorTypeID
}
func (*StarsGiftOptionVector ) TypeName () string {
return ""
}
func (vec *StarsGiftOptionVector ) TypeInfo () tdp .Type {
typ := tdp .Type {
Name : "" ,
ID : StarsGiftOptionVectorTypeID ,
}
if vec == nil {
typ .Null = true
return typ
}
typ .Fields = []tdp .Field {
{
Name : "Elems" ,
SchemaName : "Elems" ,
},
}
return typ
}
func (vec *StarsGiftOptionVector ) Encode (b *bin .Buffer ) error {
if vec == nil {
return fmt .Errorf ("can't encode Vector<StarsGiftOption> as nil" )
}
return vec .EncodeBare (b )
}
func (vec *StarsGiftOptionVector ) EncodeBare (b *bin .Buffer ) error {
if vec == nil {
return fmt .Errorf ("can't encode Vector<StarsGiftOption> as nil" )
}
b .PutVectorHeader (len (vec .Elems ))
for idx , v := range vec .Elems {
if err := v .Encode (b ); err != nil {
return fmt .Errorf ("unable to encode Vector<StarsGiftOption>: field Elems element with index %d: %w" , idx , err )
}
}
return nil
}
func (vec *StarsGiftOptionVector ) Decode (b *bin .Buffer ) error {
if vec == nil {
return fmt .Errorf ("can't decode Vector<StarsGiftOption> to nil" )
}
return vec .DecodeBare (b )
}
func (vec *StarsGiftOptionVector ) DecodeBare (b *bin .Buffer ) error {
if vec == nil {
return fmt .Errorf ("can't decode Vector<StarsGiftOption> to nil" )
}
{
headerLen , err := b .VectorHeader ()
if err != nil {
return fmt .Errorf ("unable to decode Vector<StarsGiftOption>: field Elems: %w" , err )
}
if headerLen > 0 {
vec .Elems = make ([]StarsGiftOption , 0 , headerLen %bin .PreallocateLimit )
}
for idx := 0 ; idx < headerLen ; idx ++ {
var value StarsGiftOption
if err := value .Decode (b ); err != nil {
return fmt .Errorf ("unable to decode Vector<StarsGiftOption>: field Elems: %w" , err )
}
vec .Elems = append (vec .Elems , value )
}
}
return nil
}
func (vec *StarsGiftOptionVector ) GetElems () (value []StarsGiftOption ) {
if vec == nil {
return
}
return vec .Elems
}
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 .