Skip to content

Commit

Permalink
Update Collection
Browse files Browse the repository at this point in the history
  • Loading branch information
Glavo committed Jun 24, 2024
1 parent cd6827b commit a858953
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 35 deletions.
Original file line number Diff line number Diff line change
@@ -1,35 +1,50 @@
package kala.collection;

import kala.annotations.Covariant;
import kala.collection.base.Iterators;

public abstract class AbstractCollection<@Covariant E> implements Collection<E> {

@Override
public boolean isNotEmpty() {
return Collection.super.isNotEmpty();
}

@Override
public int hashCode() {
return Iterators.hash(iterator());
}

@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof AnyCollection<?>)
|| !(canEqual(obj))
|| !(((AnyCollection<?>) obj).canEqual(this))) {
return false;
}
return sameElements(((Collection<?>) obj));
}

@Override
public String toString() {
return joinToString(", ", className() + "[", "]");
}
}
/*
* Copyright 2024 Glavo
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package kala.collection;

import kala.annotations.Covariant;
import kala.collection.base.Iterators;

public abstract class AbstractCollection<@Covariant E> implements Collection<E> {

@Override
public boolean isNotEmpty() {
return Collection.super.isNotEmpty();
}

@Override
public int hashCode() {
return Iterators.hash(iterator());
}

@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof AnyCollection<?>)
|| !(canEqual(obj))
|| !(((AnyCollection<?>) obj).canEqual(this))) {
return false;
}
return sameElements(((Collection<?>) obj));
}

@Override
public String toString() {
return joinToString(", ", className() + "[", "]");
}
}
15 changes: 15 additions & 0 deletions kala-collection/src/main/java/kala/collection/Collection.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
/*
* Copyright 2024 Glavo
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package kala.collection;

import kala.annotations.Covariant;
Expand Down

0 comments on commit a858953

Please sign in to comment.