Esempio n. 1
0
func TestSortedCast(t *testing.T) {
	s := list.NewSorted(17, false)
	_ = types.Hashable(s)
	_ = types.OrderedList(s)
}
Esempio n. 2
0
func TestSetCast(t *testing.T) {
	s := set.NewSortedSet(17)
	_ = types.Set(s)
	_ = types.Hashable(s)
}
Esempio n. 3
0
func TestListCast(t *testing.T) {
	s := list.New(17)
	_ = types.Hashable(s)
	_ = types.List(s)
}