mirror of
https://github.com/emirpasic/gods
synced 2024-11-16 12:12:59 +00:00
all: gofmt
Run standard gofmt command on project root. - go version go1.10.3 darwin/amd64 Signed-off-by: ia <isaac.ardis@gmail.com>
This commit is contained in:
parent
b2394dfbb6
commit
55e94ab1e3
@ -99,17 +99,18 @@ func (list *List) Values() []interface{} {
|
||||
}
|
||||
|
||||
//IndexOf returns index of provided element
|
||||
func (list *List) IndexOf(value interface{}) int{
|
||||
func (list *List) IndexOf(value interface{}) int {
|
||||
if list.size == 0 {
|
||||
return -1
|
||||
}
|
||||
for index, element := range list.elements {
|
||||
if element == value {
|
||||
return index
|
||||
}
|
||||
for index, element := range list.elements {
|
||||
if element == value {
|
||||
return index
|
||||
}
|
||||
return -1
|
||||
}
|
||||
return -1
|
||||
}
|
||||
|
||||
// Empty returns true if list does not contain any elements.
|
||||
func (list *List) Empty() bool {
|
||||
return list.size == 0
|
||||
|
@ -30,26 +30,26 @@ func TestListIndexOf(t *testing.T) {
|
||||
list := New()
|
||||
|
||||
expectedIndex := -1
|
||||
if index := list.IndexOf("a"); index != expectedIndex{
|
||||
t.Errorf("Got %v expected %v",index,expectedIndex)
|
||||
if index := list.IndexOf("a"); index != expectedIndex {
|
||||
t.Errorf("Got %v expected %v", index, expectedIndex)
|
||||
}
|
||||
|
||||
list.Add("a")
|
||||
list.Add("b", "c")
|
||||
|
||||
expectedIndex = 0
|
||||
if index := list.IndexOf("a"); index != expectedIndex{
|
||||
t.Errorf("Got %v expected %v",index,expectedIndex)
|
||||
if index := list.IndexOf("a"); index != expectedIndex {
|
||||
t.Errorf("Got %v expected %v", index, expectedIndex)
|
||||
}
|
||||
|
||||
expectedIndex = 1
|
||||
if index := list.IndexOf("b"); index != expectedIndex{
|
||||
t.Errorf("Got %v expected %v",index,expectedIndex)
|
||||
if index := list.IndexOf("b"); index != expectedIndex {
|
||||
t.Errorf("Got %v expected %v", index, expectedIndex)
|
||||
}
|
||||
|
||||
expectedIndex = 2
|
||||
if index := list.IndexOf("c"); index != expectedIndex{
|
||||
t.Errorf("Got %v expected %v",index,expectedIndex)
|
||||
if index := list.IndexOf("c"); index != expectedIndex {
|
||||
t.Errorf("Got %v expected %v", index, expectedIndex)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -185,6 +185,7 @@ func (list *List) IndexOf(value interface{}) int {
|
||||
}
|
||||
return -1
|
||||
}
|
||||
|
||||
// Empty returns true if list does not contain any elements.
|
||||
func (list *List) Empty() bool {
|
||||
return list.size == 0
|
||||
|
@ -137,26 +137,26 @@ func TestListIndexOf(t *testing.T) {
|
||||
list := New()
|
||||
|
||||
expectedIndex := -1
|
||||
if index := list.IndexOf("a"); index != expectedIndex{
|
||||
t.Errorf("Got %v expected %v",index,expectedIndex)
|
||||
if index := list.IndexOf("a"); index != expectedIndex {
|
||||
t.Errorf("Got %v expected %v", index, expectedIndex)
|
||||
}
|
||||
|
||||
list.Add("a")
|
||||
list.Add("b", "c")
|
||||
|
||||
expectedIndex = 0
|
||||
if index := list.IndexOf("a"); index != expectedIndex{
|
||||
t.Errorf("Got %v expected %v",index,expectedIndex)
|
||||
if index := list.IndexOf("a"); index != expectedIndex {
|
||||
t.Errorf("Got %v expected %v", index, expectedIndex)
|
||||
}
|
||||
|
||||
expectedIndex = 1
|
||||
if index := list.IndexOf("b"); index != expectedIndex{
|
||||
t.Errorf("Got %v expected %v",index,expectedIndex)
|
||||
if index := list.IndexOf("b"); index != expectedIndex {
|
||||
t.Errorf("Got %v expected %v", index, expectedIndex)
|
||||
}
|
||||
|
||||
expectedIndex = 2
|
||||
if index := list.IndexOf("c"); index != expectedIndex{
|
||||
t.Errorf("Got %v expected %v",index,expectedIndex)
|
||||
if index := list.IndexOf("c"); index != expectedIndex {
|
||||
t.Errorf("Got %v expected %v", index, expectedIndex)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -155,7 +155,7 @@ func (list *List) Values() []interface{} {
|
||||
}
|
||||
|
||||
//IndexOf returns index of provided element
|
||||
func (list *List) IndexOf(value interface{}) int{
|
||||
func (list *List) IndexOf(value interface{}) int {
|
||||
if list.size == 0 {
|
||||
return -1
|
||||
}
|
||||
@ -166,6 +166,7 @@ func (list *List) IndexOf(value interface{}) int{
|
||||
}
|
||||
return -1
|
||||
}
|
||||
|
||||
// Empty returns true if list does not contain any elements.
|
||||
func (list *List) Empty() bool {
|
||||
return list.size == 0
|
||||
|
@ -137,26 +137,26 @@ func TestListIndexOf(t *testing.T) {
|
||||
list := New()
|
||||
|
||||
expectedIndex := -1
|
||||
if index := list.IndexOf("a"); index != expectedIndex{
|
||||
t.Errorf("Got %v expected %v",index,expectedIndex)
|
||||
if index := list.IndexOf("a"); index != expectedIndex {
|
||||
t.Errorf("Got %v expected %v", index, expectedIndex)
|
||||
}
|
||||
|
||||
list.Add("a")
|
||||
list.Add("b", "c")
|
||||
|
||||
expectedIndex = 0
|
||||
if index := list.IndexOf("a"); index != expectedIndex{
|
||||
t.Errorf("Got %v expected %v",index,expectedIndex)
|
||||
if index := list.IndexOf("a"); index != expectedIndex {
|
||||
t.Errorf("Got %v expected %v", index, expectedIndex)
|
||||
}
|
||||
|
||||
expectedIndex = 1
|
||||
if index := list.IndexOf("b"); index != expectedIndex{
|
||||
t.Errorf("Got %v expected %v",index,expectedIndex)
|
||||
if index := list.IndexOf("b"); index != expectedIndex {
|
||||
t.Errorf("Got %v expected %v", index, expectedIndex)
|
||||
}
|
||||
|
||||
expectedIndex = 2
|
||||
if index := list.IndexOf("c"); index != expectedIndex{
|
||||
t.Errorf("Got %v expected %v",index,expectedIndex)
|
||||
if index := list.IndexOf("c"); index != expectedIndex {
|
||||
t.Errorf("Got %v expected %v", index, expectedIndex)
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user