mirror of
https://github.com/emirpasic/gods
synced 2024-11-06 15:20:25 +00:00
d7a31571cc
- documentation and tests updates
40 lines
1.5 KiB
Go
40 lines
1.5 KiB
Go
/*
|
|
Copyright (c) Emir Pasic, All rights reserved.
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 3.0 of the License, or (at your option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with this library. See the file LICENSE included
|
|
with this distribution for more information.
|
|
*/
|
|
|
|
// Package sets provides an abstract Set interface.
|
|
//
|
|
// In computer science, a set is an abstract data type that can store certain values and no repeated values. It is a computer implementation of the mathematical concept of a finite set. Unlike most other collection types, rather than retrieving a specific element from a set, one typically tests a value for membership in a set.
|
|
//
|
|
// Reference: https://en.wikipedia.org/wiki/Set_%28abstract_data_type%29
|
|
package sets
|
|
|
|
import "github.com/emirpasic/gods/containers"
|
|
|
|
// Set interface that all sets implement
|
|
type Set interface {
|
|
Add(elements ...interface{})
|
|
Remove(elements ...interface{})
|
|
Contains(elements ...interface{}) bool
|
|
|
|
containers.Container
|
|
// Empty() bool
|
|
// Size() int
|
|
// Clear()
|
|
// Values() []interface{}
|
|
}
|