generated from atomicgo/template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexamples_test.go
125 lines (92 loc) Β· 1.54 KB
/
examples_test.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
package stack_test
import (
"fmt"
"atomicgo.dev/stack"
)
func ExampleNew() {
stack.New[string]()
}
func ExampleStack_Push() {
s := stack.New[string]()
s.Push("Hello")
s.Push("World")
fmt.Println(s)
// Output:
// [Hello World]
}
func ExampleStack_Pop() {
s := stack.New[string]()
s.Push("Hello")
s.Push("World")
fmt.Println(s.Pop())
fmt.Println(s.Pop())
// Output:
// World
// Hello
}
func ExampleStack_PopSafe() {
s := stack.New[string]()
s.Push("Hello")
s.Push("World")
fmt.Println(s.PopSafe())
fmt.Println(s.PopSafe())
fmt.Println(s.PopSafe())
// Output:
// World
// Hello
//
}
func ExampleStack_Values() {
s := stack.New[string]()
s.Push("Hello")
s.Push("World")
fmt.Println(s.Values())
// Output:
// [Hello World]
}
func ExampleStack_Size() {
s := stack.New[string]()
s.Push("Hello")
s.Push("World")
fmt.Println(s.Size())
// Output:
// 2
}
func ExampleStack_IsEmpty() {
s := stack.New[string]()
s.Push("Hello")
s.Push("World")
fmt.Println(s.IsEmpty())
s.Clear()
fmt.Println(s.IsEmpty())
// Output:
// false
// true
}
func ExampleStack_Contains() {
s := stack.New[string]()
s.Push("Hello")
s.Push("World")
fmt.Println(s.Contains("Hello"))
fmt.Println(s.Contains("Foo"))
// Output:
// true
// false
}
func ExampleStack_Clear() {
s := stack.New[string]()
s.Push("Hello")
s.Push("World")
s.Clear()
fmt.Println(s)
// Output:
// []
}
func ExampleStack_String() {
s := stack.New[string]()
s.Push("Hello")
s.Push("World")
fmt.Println(s.String())
// Output:
// [Hello World]
}