-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path10_index_of_user_struct.go
58 lines (50 loc) · 1.33 KB
/
10_index_of_user_struct.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
// Seriál "Programovací jazyk Go"
// https://www.root.cz/serialy/programovaci-jazyk-go/
//
// Dvacátá osmá část
// Datové struktury s líným vyhodnocováním v programovacím jazyce Go
// https://www.root.cz/clanky/datove-struktury-s-linym-vyhodnocovanim-v-programovacim-jazyce-go/
//
// Repositář:
// https://github.com/tisnik/go-root/
//
// Seznam demonstračních příkladů z dvacáté osmé části:
// https://github.com/tisnik/go-root/blob/master/article_28/README.md
//
// Demonstrační příklad číslo 10:
// Metoda IndexOf() a stream se strukturami.
package main
import (
"fmt"
"github.com/wesovilabs/koazee"
)
// User data type represents an user in (some) information system
type User struct {
id uint32
name string
surname string
}
func main() {
var users = []User{
User{
id: 1,
name: "Pepek",
surname: "Vyskoč"},
User{
id: 2,
name: "Pepek",
surname: "Vyskoč"},
User{
id: 3,
name: "Josef",
surname: "Vyskočil"},
}
fmt.Println(users)
stream := koazee.StreamOf(users)
i1, _ := stream.IndexOf(User{3, "Josef", "Vyskočil"})
fmt.Printf("index of #1: %v\n", i1)
i2, _ := stream.LastIndexOf(User{3, "Josef", "Vyskočil"})
fmt.Printf("last index of #1: %v\n", i2)
i3, _ := stream.IndexOf(User{})
fmt.Printf("index of #2: %v\n", i3)
}