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