7a04f298d2
- update to latest telegram layer - remove some references to fields in tg.Entities that don't exist in the schema - originally added here: https://github.com/beeper/td/commit/820929062a2ba0104397bc01235ab58a9cff780e - referenced here - https://github.com/mautrix/telegramgo/commit/124f0967ed195b5a380c9bd02e170ada9710dde3 - https://github.com/mautrix/telegramgo/commit/4205047aab2e0639217148b5d125bfaab668bd8e
268 lines
5.9 KiB
Go
Generated
268 lines
5.9 KiB
Go
Generated
//go:build !no_gotd_slices
|
|
// +build !no_gotd_slices
|
|
|
|
// Code generated by gotdgen, DO NOT EDIT.
|
|
|
|
package tg
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"sort"
|
|
"strings"
|
|
|
|
"go.uber.org/multierr"
|
|
|
|
"go.mau.fi/mautrix-telegram/pkg/gotd/bin"
|
|
"go.mau.fi/mautrix-telegram/pkg/gotd/tdjson"
|
|
"go.mau.fi/mautrix-telegram/pkg/gotd/tdp"
|
|
"go.mau.fi/mautrix-telegram/pkg/gotd/tgerr"
|
|
)
|
|
|
|
// No-op definition for keeping imports.
|
|
var (
|
|
_ = bin.Buffer{}
|
|
_ = context.Background()
|
|
_ = fmt.Stringer(nil)
|
|
_ = strings.Builder{}
|
|
_ = errors.Is
|
|
_ = multierr.AppendInto
|
|
_ = sort.Ints
|
|
_ = tdp.Format
|
|
_ = tgerr.Error{}
|
|
_ = tdjson.Encoder{}
|
|
)
|
|
|
|
// AccountWallPapersClassArray is adapter for slice of AccountWallPapersClass.
|
|
type AccountWallPapersClassArray []AccountWallPapersClass
|
|
|
|
// Sort sorts slice of AccountWallPapersClass.
|
|
func (s AccountWallPapersClassArray) Sort(less func(a, b AccountWallPapersClass) bool) AccountWallPapersClassArray {
|
|
sort.Slice(s, func(i, j int) bool {
|
|
return less(s[i], s[j])
|
|
})
|
|
return s
|
|
}
|
|
|
|
// SortStable sorts slice of AccountWallPapersClass.
|
|
func (s AccountWallPapersClassArray) SortStable(less func(a, b AccountWallPapersClass) bool) AccountWallPapersClassArray {
|
|
sort.SliceStable(s, func(i, j int) bool {
|
|
return less(s[i], s[j])
|
|
})
|
|
return s
|
|
}
|
|
|
|
// Retain filters in-place slice of AccountWallPapersClass.
|
|
func (s AccountWallPapersClassArray) Retain(keep func(x AccountWallPapersClass) bool) AccountWallPapersClassArray {
|
|
n := 0
|
|
for _, x := range s {
|
|
if keep(x) {
|
|
s[n] = x
|
|
n++
|
|
}
|
|
}
|
|
s = s[:n]
|
|
|
|
return s
|
|
}
|
|
|
|
// First returns first element of slice (if exists).
|
|
func (s AccountWallPapersClassArray) First() (v AccountWallPapersClass, ok bool) {
|
|
if len(s) < 1 {
|
|
return
|
|
}
|
|
return s[0], true
|
|
}
|
|
|
|
// Last returns last element of slice (if exists).
|
|
func (s AccountWallPapersClassArray) Last() (v AccountWallPapersClass, ok bool) {
|
|
if len(s) < 1 {
|
|
return
|
|
}
|
|
return s[len(s)-1], true
|
|
}
|
|
|
|
// PopFirst returns first element of slice (if exists) and deletes it.
|
|
func (s *AccountWallPapersClassArray) PopFirst() (v AccountWallPapersClass, ok bool) {
|
|
if s == nil || len(*s) < 1 {
|
|
return
|
|
}
|
|
|
|
a := *s
|
|
v = a[0]
|
|
|
|
// Delete by index from SliceTricks.
|
|
copy(a[0:], a[1:])
|
|
var zero AccountWallPapersClass
|
|
a[len(a)-1] = zero
|
|
a = a[:len(a)-1]
|
|
*s = a
|
|
|
|
return v, true
|
|
}
|
|
|
|
// Pop returns last element of slice (if exists) and deletes it.
|
|
func (s *AccountWallPapersClassArray) Pop() (v AccountWallPapersClass, 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
|
|
}
|
|
|
|
// AsAccountWallPapers returns copy with only AccountWallPapers constructors.
|
|
func (s AccountWallPapersClassArray) AsAccountWallPapers() (to AccountWallPapersArray) {
|
|
for _, elem := range s {
|
|
value, ok := elem.(*AccountWallPapers)
|
|
if !ok {
|
|
continue
|
|
}
|
|
to = append(to, *value)
|
|
}
|
|
|
|
return to
|
|
}
|
|
|
|
// AppendOnlyModified appends only Modified constructors to
|
|
// given slice.
|
|
func (s AccountWallPapersClassArray) AppendOnlyModified(to []*AccountWallPapers) []*AccountWallPapers {
|
|
for _, elem := range s {
|
|
value, ok := elem.AsModified()
|
|
if !ok {
|
|
continue
|
|
}
|
|
to = append(to, value)
|
|
}
|
|
|
|
return to
|
|
}
|
|
|
|
// AsModified returns copy with only Modified constructors.
|
|
func (s AccountWallPapersClassArray) AsModified() (to []*AccountWallPapers) {
|
|
return s.AppendOnlyModified(to)
|
|
}
|
|
|
|
// FirstAsModified returns first element of slice (if exists).
|
|
func (s AccountWallPapersClassArray) FirstAsModified() (v *AccountWallPapers, ok bool) {
|
|
value, ok := s.First()
|
|
if !ok {
|
|
return
|
|
}
|
|
return value.AsModified()
|
|
}
|
|
|
|
// LastAsModified returns last element of slice (if exists).
|
|
func (s AccountWallPapersClassArray) LastAsModified() (v *AccountWallPapers, ok bool) {
|
|
value, ok := s.Last()
|
|
if !ok {
|
|
return
|
|
}
|
|
return value.AsModified()
|
|
}
|
|
|
|
// PopFirstAsModified returns element of slice (if exists).
|
|
func (s *AccountWallPapersClassArray) PopFirstAsModified() (v *AccountWallPapers, ok bool) {
|
|
value, ok := s.PopFirst()
|
|
if !ok {
|
|
return
|
|
}
|
|
return value.AsModified()
|
|
}
|
|
|
|
// PopAsModified returns element of slice (if exists).
|
|
func (s *AccountWallPapersClassArray) PopAsModified() (v *AccountWallPapers, ok bool) {
|
|
value, ok := s.Pop()
|
|
if !ok {
|
|
return
|
|
}
|
|
return value.AsModified()
|
|
}
|
|
|
|
// AccountWallPapersArray is adapter for slice of AccountWallPapers.
|
|
type AccountWallPapersArray []AccountWallPapers
|
|
|
|
// Sort sorts slice of AccountWallPapers.
|
|
func (s AccountWallPapersArray) Sort(less func(a, b AccountWallPapers) bool) AccountWallPapersArray {
|
|
sort.Slice(s, func(i, j int) bool {
|
|
return less(s[i], s[j])
|
|
})
|
|
return s
|
|
}
|
|
|
|
// SortStable sorts slice of AccountWallPapers.
|
|
func (s AccountWallPapersArray) SortStable(less func(a, b AccountWallPapers) bool) AccountWallPapersArray {
|
|
sort.SliceStable(s, func(i, j int) bool {
|
|
return less(s[i], s[j])
|
|
})
|
|
return s
|
|
}
|
|
|
|
// Retain filters in-place slice of AccountWallPapers.
|
|
func (s AccountWallPapersArray) Retain(keep func(x AccountWallPapers) bool) AccountWallPapersArray {
|
|
n := 0
|
|
for _, x := range s {
|
|
if keep(x) {
|
|
s[n] = x
|
|
n++
|
|
}
|
|
}
|
|
s = s[:n]
|
|
|
|
return s
|
|
}
|
|
|
|
// First returns first element of slice (if exists).
|
|
func (s AccountWallPapersArray) First() (v AccountWallPapers, ok bool) {
|
|
if len(s) < 1 {
|
|
return
|
|
}
|
|
return s[0], true
|
|
}
|
|
|
|
// Last returns last element of slice (if exists).
|
|
func (s AccountWallPapersArray) Last() (v AccountWallPapers, ok bool) {
|
|
if len(s) < 1 {
|
|
return
|
|
}
|
|
return s[len(s)-1], true
|
|
}
|
|
|
|
// PopFirst returns first element of slice (if exists) and deletes it.
|
|
func (s *AccountWallPapersArray) PopFirst() (v AccountWallPapers, ok bool) {
|
|
if s == nil || len(*s) < 1 {
|
|
return
|
|
}
|
|
|
|
a := *s
|
|
v = a[0]
|
|
|
|
// Delete by index from SliceTricks.
|
|
copy(a[0:], a[1:])
|
|
var zero AccountWallPapers
|
|
a[len(a)-1] = zero
|
|
a = a[:len(a)-1]
|
|
*s = a
|
|
|
|
return v, true
|
|
}
|
|
|
|
// Pop returns last element of slice (if exists) and deletes it.
|
|
func (s *AccountWallPapersArray) Pop() (v AccountWallPapers, 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
|
|
}
|