mirror of
https://github.com/emirpasic/gods
synced 2024-11-02 21:40:24 +00:00
41 lines
1.1 KiB
Go
41 lines
1.1 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 lists
|
|
|
|
import (
|
|
"github.com/emirpasic/gods/containers"
|
|
"github.com/emirpasic/gods/utils"
|
|
)
|
|
|
|
type Interface interface {
|
|
Get(index int) (interface{}, bool)
|
|
Remove(index int)
|
|
Add(values ...interface{})
|
|
Contains(values ...interface{}) bool
|
|
Sort(comparator utils.Comparator)
|
|
Swap(index1, index2 int)
|
|
Insert(index int, values ...interface{})
|
|
|
|
containers.Interface
|
|
// Empty() bool
|
|
// Size() int
|
|
// Clear()
|
|
// Values() []interface{}
|
|
}
|