-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
tl_peer_gen.go
894 lines (768 loc) · 18.3 KB
/
tl_peer_gen.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
// Code generated by gotdgen, DO NOT EDIT.
package tg
import (
"context"
"errors"
"fmt"
"sort"
"strings"
"go.uber.org/multierr"
"github.com/gotd/td/bin"
"github.com/gotd/td/tdp"
"github.com/gotd/td/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{}
)
// PeerUser represents TL type `peerUser#9db1bc6d`.
// Chat partner
//
// See https://core.telegram.org/constructor/peerUser for reference.
type PeerUser struct {
// User identifier
UserID int
}
// PeerUserTypeID is TL type id of PeerUser.
const PeerUserTypeID = 0x9db1bc6d
func (p *PeerUser) Zero() bool {
if p == nil {
return true
}
if !(p.UserID == 0) {
return false
}
return true
}
// String implements fmt.Stringer.
func (p *PeerUser) String() string {
if p == nil {
return "PeerUser(nil)"
}
type Alias PeerUser
return fmt.Sprintf("PeerUser%+v", Alias(*p))
}
// FillFrom fills PeerUser from given interface.
func (p *PeerUser) FillFrom(from interface {
GetUserID() (value int)
}) {
p.UserID = from.GetUserID()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*PeerUser) TypeID() uint32 {
return PeerUserTypeID
}
// TypeName returns name of type in TL schema.
func (*PeerUser) TypeName() string {
return "peerUser"
}
// TypeInfo returns info about TL type.
func (p *PeerUser) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "peerUser",
ID: PeerUserTypeID,
}
if p == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "UserID",
SchemaName: "user_id",
},
}
return typ
}
// Encode implements bin.Encoder.
func (p *PeerUser) Encode(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't encode peerUser#9db1bc6d as nil")
}
b.PutID(PeerUserTypeID)
return p.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (p *PeerUser) EncodeBare(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't encode peerUser#9db1bc6d as nil")
}
b.PutInt(p.UserID)
return nil
}
// GetUserID returns value of UserID field.
func (p *PeerUser) GetUserID() (value int) {
return p.UserID
}
// Decode implements bin.Decoder.
func (p *PeerUser) Decode(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't decode peerUser#9db1bc6d to nil")
}
if err := b.ConsumeID(PeerUserTypeID); err != nil {
return fmt.Errorf("unable to decode peerUser#9db1bc6d: %w", err)
}
return p.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (p *PeerUser) DecodeBare(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't decode peerUser#9db1bc6d to nil")
}
{
value, err := b.Int()
if err != nil {
return fmt.Errorf("unable to decode peerUser#9db1bc6d: field user_id: %w", err)
}
p.UserID = value
}
return nil
}
// construct implements constructor of PeerClass.
func (p PeerUser) construct() PeerClass { return &p }
// Ensuring interfaces in compile-time for PeerUser.
var (
_ bin.Encoder = &PeerUser{}
_ bin.Decoder = &PeerUser{}
_ bin.BareEncoder = &PeerUser{}
_ bin.BareDecoder = &PeerUser{}
_ PeerClass = &PeerUser{}
)
// PeerChat represents TL type `peerChat#bad0e5bb`.
// Group.
//
// See https://core.telegram.org/constructor/peerChat for reference.
type PeerChat struct {
// Group identifier
ChatID int
}
// PeerChatTypeID is TL type id of PeerChat.
const PeerChatTypeID = 0xbad0e5bb
func (p *PeerChat) Zero() bool {
if p == nil {
return true
}
if !(p.ChatID == 0) {
return false
}
return true
}
// String implements fmt.Stringer.
func (p *PeerChat) String() string {
if p == nil {
return "PeerChat(nil)"
}
type Alias PeerChat
return fmt.Sprintf("PeerChat%+v", Alias(*p))
}
// FillFrom fills PeerChat from given interface.
func (p *PeerChat) FillFrom(from interface {
GetChatID() (value int)
}) {
p.ChatID = from.GetChatID()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*PeerChat) TypeID() uint32 {
return PeerChatTypeID
}
// TypeName returns name of type in TL schema.
func (*PeerChat) TypeName() string {
return "peerChat"
}
// TypeInfo returns info about TL type.
func (p *PeerChat) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "peerChat",
ID: PeerChatTypeID,
}
if p == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "ChatID",
SchemaName: "chat_id",
},
}
return typ
}
// Encode implements bin.Encoder.
func (p *PeerChat) Encode(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't encode peerChat#bad0e5bb as nil")
}
b.PutID(PeerChatTypeID)
return p.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (p *PeerChat) EncodeBare(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't encode peerChat#bad0e5bb as nil")
}
b.PutInt(p.ChatID)
return nil
}
// GetChatID returns value of ChatID field.
func (p *PeerChat) GetChatID() (value int) {
return p.ChatID
}
// Decode implements bin.Decoder.
func (p *PeerChat) Decode(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't decode peerChat#bad0e5bb to nil")
}
if err := b.ConsumeID(PeerChatTypeID); err != nil {
return fmt.Errorf("unable to decode peerChat#bad0e5bb: %w", err)
}
return p.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (p *PeerChat) DecodeBare(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't decode peerChat#bad0e5bb to nil")
}
{
value, err := b.Int()
if err != nil {
return fmt.Errorf("unable to decode peerChat#bad0e5bb: field chat_id: %w", err)
}
p.ChatID = value
}
return nil
}
// construct implements constructor of PeerClass.
func (p PeerChat) construct() PeerClass { return &p }
// Ensuring interfaces in compile-time for PeerChat.
var (
_ bin.Encoder = &PeerChat{}
_ bin.Decoder = &PeerChat{}
_ bin.BareEncoder = &PeerChat{}
_ bin.BareDecoder = &PeerChat{}
_ PeerClass = &PeerChat{}
)
// PeerChannel represents TL type `peerChannel#bddde532`.
// Channel/supergroup
//
// See https://core.telegram.org/constructor/peerChannel for reference.
type PeerChannel struct {
// Channel ID
ChannelID int
}
// PeerChannelTypeID is TL type id of PeerChannel.
const PeerChannelTypeID = 0xbddde532
func (p *PeerChannel) Zero() bool {
if p == nil {
return true
}
if !(p.ChannelID == 0) {
return false
}
return true
}
// String implements fmt.Stringer.
func (p *PeerChannel) String() string {
if p == nil {
return "PeerChannel(nil)"
}
type Alias PeerChannel
return fmt.Sprintf("PeerChannel%+v", Alias(*p))
}
// FillFrom fills PeerChannel from given interface.
func (p *PeerChannel) FillFrom(from interface {
GetChannelID() (value int)
}) {
p.ChannelID = from.GetChannelID()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*PeerChannel) TypeID() uint32 {
return PeerChannelTypeID
}
// TypeName returns name of type in TL schema.
func (*PeerChannel) TypeName() string {
return "peerChannel"
}
// TypeInfo returns info about TL type.
func (p *PeerChannel) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "peerChannel",
ID: PeerChannelTypeID,
}
if p == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "ChannelID",
SchemaName: "channel_id",
},
}
return typ
}
// Encode implements bin.Encoder.
func (p *PeerChannel) Encode(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't encode peerChannel#bddde532 as nil")
}
b.PutID(PeerChannelTypeID)
return p.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (p *PeerChannel) EncodeBare(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't encode peerChannel#bddde532 as nil")
}
b.PutInt(p.ChannelID)
return nil
}
// GetChannelID returns value of ChannelID field.
func (p *PeerChannel) GetChannelID() (value int) {
return p.ChannelID
}
// Decode implements bin.Decoder.
func (p *PeerChannel) Decode(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't decode peerChannel#bddde532 to nil")
}
if err := b.ConsumeID(PeerChannelTypeID); err != nil {
return fmt.Errorf("unable to decode peerChannel#bddde532: %w", err)
}
return p.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (p *PeerChannel) DecodeBare(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't decode peerChannel#bddde532 to nil")
}
{
value, err := b.Int()
if err != nil {
return fmt.Errorf("unable to decode peerChannel#bddde532: field channel_id: %w", err)
}
p.ChannelID = value
}
return nil
}
// construct implements constructor of PeerClass.
func (p PeerChannel) construct() PeerClass { return &p }
// Ensuring interfaces in compile-time for PeerChannel.
var (
_ bin.Encoder = &PeerChannel{}
_ bin.Decoder = &PeerChannel{}
_ bin.BareEncoder = &PeerChannel{}
_ bin.BareDecoder = &PeerChannel{}
_ PeerClass = &PeerChannel{}
)
// PeerClass represents Peer generic type.
//
// See https://core.telegram.org/type/Peer for reference.
//
// Example:
// g, err := tg.DecodePeer(buf)
// if err != nil {
// panic(err)
// }
// switch v := g.(type) {
// case *tg.PeerUser: // peerUser#9db1bc6d
// case *tg.PeerChat: // peerChat#bad0e5bb
// case *tg.PeerChannel: // peerChannel#bddde532
// default: panic(v)
// }
type PeerClass interface {
bin.Encoder
bin.Decoder
bin.BareEncoder
bin.BareDecoder
construct() PeerClass
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
TypeID() uint32
// TypeName returns name of type in TL schema.
TypeName() string
// String implements fmt.Stringer.
String() string
// Zero returns true if current object has a zero value.
Zero() bool
}
// AsInput tries to map PeerChat to InputPeerChat.
func (p *PeerChat) AsInput() *InputPeerChat {
value := new(InputPeerChat)
value.ChatID = p.GetChatID()
return value
}
// DecodePeer implements binary de-serialization for PeerClass.
func DecodePeer(buf *bin.Buffer) (PeerClass, error) {
id, err := buf.PeekID()
if err != nil {
return nil, err
}
switch id {
case PeerUserTypeID:
// Decoding peerUser#9db1bc6d.
v := PeerUser{}
if err := v.Decode(buf); err != nil {
return nil, fmt.Errorf("unable to decode PeerClass: %w", err)
}
return &v, nil
case PeerChatTypeID:
// Decoding peerChat#bad0e5bb.
v := PeerChat{}
if err := v.Decode(buf); err != nil {
return nil, fmt.Errorf("unable to decode PeerClass: %w", err)
}
return &v, nil
case PeerChannelTypeID:
// Decoding peerChannel#bddde532.
v := PeerChannel{}
if err := v.Decode(buf); err != nil {
return nil, fmt.Errorf("unable to decode PeerClass: %w", err)
}
return &v, nil
default:
return nil, fmt.Errorf("unable to decode PeerClass: %w", bin.NewUnexpectedID(id))
}
}
// Peer boxes the PeerClass providing a helper.
type PeerBox struct {
Peer PeerClass
}
// Decode implements bin.Decoder for PeerBox.
func (b *PeerBox) Decode(buf *bin.Buffer) error {
if b == nil {
return fmt.Errorf("unable to decode PeerBox to nil")
}
v, err := DecodePeer(buf)
if err != nil {
return fmt.Errorf("unable to decode boxed value: %w", err)
}
b.Peer = v
return nil
}
// Encode implements bin.Encode for PeerBox.
func (b *PeerBox) Encode(buf *bin.Buffer) error {
if b == nil || b.Peer == nil {
return fmt.Errorf("unable to encode PeerClass as nil")
}
return b.Peer.Encode(buf)
}
// PeerClassArray is adapter for slice of PeerClass.
type PeerClassArray []PeerClass
// Sort sorts slice of PeerClass.
func (s PeerClassArray) Sort(less func(a, b PeerClass) bool) PeerClassArray {
sort.Slice(s, func(i, j int) bool {
return less(s[i], s[j])
})
return s
}
// SortStable sorts slice of PeerClass.
func (s PeerClassArray) SortStable(less func(a, b PeerClass) bool) PeerClassArray {
sort.SliceStable(s, func(i, j int) bool {
return less(s[i], s[j])
})
return s
}
// Retain filters in-place slice of PeerClass.
func (s PeerClassArray) Retain(keep func(x PeerClass) bool) PeerClassArray {
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 PeerClassArray) First() (v PeerClass, ok bool) {
if len(s) < 1 {
return
}
return s[0], true
}
// Last returns last element of slice (if exists).
func (s PeerClassArray) Last() (v PeerClass, 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 *PeerClassArray) PopFirst() (v PeerClass, 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 PeerClass
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 *PeerClassArray) Pop() (v PeerClass, 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
}
// AsPeerUser returns copy with only PeerUser constructors.
func (s PeerClassArray) AsPeerUser() (to PeerUserArray) {
for _, elem := range s {
value, ok := elem.(*PeerUser)
if !ok {
continue
}
to = append(to, *value)
}
return to
}
// AsPeerChat returns copy with only PeerChat constructors.
func (s PeerClassArray) AsPeerChat() (to PeerChatArray) {
for _, elem := range s {
value, ok := elem.(*PeerChat)
if !ok {
continue
}
to = append(to, *value)
}
return to
}
// AsPeerChannel returns copy with only PeerChannel constructors.
func (s PeerClassArray) AsPeerChannel() (to PeerChannelArray) {
for _, elem := range s {
value, ok := elem.(*PeerChannel)
if !ok {
continue
}
to = append(to, *value)
}
return to
}
// PeerUserArray is adapter for slice of PeerUser.
type PeerUserArray []PeerUser
// Sort sorts slice of PeerUser.
func (s PeerUserArray) Sort(less func(a, b PeerUser) bool) PeerUserArray {
sort.Slice(s, func(i, j int) bool {
return less(s[i], s[j])
})
return s
}
// SortStable sorts slice of PeerUser.
func (s PeerUserArray) SortStable(less func(a, b PeerUser) bool) PeerUserArray {
sort.SliceStable(s, func(i, j int) bool {
return less(s[i], s[j])
})
return s
}
// Retain filters in-place slice of PeerUser.
func (s PeerUserArray) Retain(keep func(x PeerUser) bool) PeerUserArray {
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 PeerUserArray) First() (v PeerUser, ok bool) {
if len(s) < 1 {
return
}
return s[0], true
}
// Last returns last element of slice (if exists).
func (s PeerUserArray) Last() (v PeerUser, 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 *PeerUserArray) PopFirst() (v PeerUser, 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 PeerUser
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 *PeerUserArray) Pop() (v PeerUser, 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
}
// PeerChatArray is adapter for slice of PeerChat.
type PeerChatArray []PeerChat
// Sort sorts slice of PeerChat.
func (s PeerChatArray) Sort(less func(a, b PeerChat) bool) PeerChatArray {
sort.Slice(s, func(i, j int) bool {
return less(s[i], s[j])
})
return s
}
// SortStable sorts slice of PeerChat.
func (s PeerChatArray) SortStable(less func(a, b PeerChat) bool) PeerChatArray {
sort.SliceStable(s, func(i, j int) bool {
return less(s[i], s[j])
})
return s
}
// Retain filters in-place slice of PeerChat.
func (s PeerChatArray) Retain(keep func(x PeerChat) bool) PeerChatArray {
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 PeerChatArray) First() (v PeerChat, ok bool) {
if len(s) < 1 {
return
}
return s[0], true
}
// Last returns last element of slice (if exists).
func (s PeerChatArray) Last() (v PeerChat, 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 *PeerChatArray) PopFirst() (v PeerChat, 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 PeerChat
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 *PeerChatArray) Pop() (v PeerChat, 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
}
// PeerChannelArray is adapter for slice of PeerChannel.
type PeerChannelArray []PeerChannel
// Sort sorts slice of PeerChannel.
func (s PeerChannelArray) Sort(less func(a, b PeerChannel) bool) PeerChannelArray {
sort.Slice(s, func(i, j int) bool {
return less(s[i], s[j])
})
return s
}
// SortStable sorts slice of PeerChannel.
func (s PeerChannelArray) SortStable(less func(a, b PeerChannel) bool) PeerChannelArray {
sort.SliceStable(s, func(i, j int) bool {
return less(s[i], s[j])
})
return s
}
// Retain filters in-place slice of PeerChannel.
func (s PeerChannelArray) Retain(keep func(x PeerChannel) bool) PeerChannelArray {
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 PeerChannelArray) First() (v PeerChannel, ok bool) {
if len(s) < 1 {
return
}
return s[0], true
}
// Last returns last element of slice (if exists).
func (s PeerChannelArray) Last() (v PeerChannel, 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 *PeerChannelArray) PopFirst() (v PeerChannel, 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 PeerChannel
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 *PeerChannelArray) Pop() (v PeerChannel, 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
}