VCollections – Release 1
Uses of Interface org.violetlib.collections.FindVisitor
-
-
Modifier and Type |
Method and Description |
<R> R |
IList.find(FindVisitor<V,R> visitor)
Visit the elements of the list from the first element to the last element until the visitor returns a non-null
result.
|
<R> R |
ICollection.find(FindVisitor<V,R> visitor)
Visit the elements of the collection until the visitor returns a non-null result.
|
<R> R |
IList.find(FindVisitor<V,R> visitor,
R defaultValue)
Visit each element of the list from the first element to the last element until the visitor returns a non-null
result.
|
<R> R |
ICollection.find(FindVisitor<V,R> visitor,
R defaultValue)
Visit each element of the collection until the visitor returns a non-null result.
|