Skip to content

Commit

Permalink
Some minor improvements in method's documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
doctore committed Jan 20, 2024
1 parent 39a9406 commit f638b61
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ public static <T, E> Collection<E> applyOrElse(final Collection<? extends T> sou


/**
* Returns a {@link Collection} after:
* Returns a new {@link Collection} after applying to {@code sourceCollection}:
* <p>
* - Filter its elements using {@code filterPredicate}
* - Transform its filtered elements using {@code mapFunction}
Expand Down Expand Up @@ -389,7 +389,7 @@ public static <T, E> List<E> collect(final Collection<? extends T> sourceCollect


/**
* Returns a {@link Collection} after:
* Returns a new {@link Collection} after applying to {@code sourceCollection}:
* <p>
* - Filter its elements using {@code filterPredicate}
* - Transform its filtered elements using {@code mapFunction}
Expand Down Expand Up @@ -443,7 +443,7 @@ public static <T, E> Collection<E> collect(final Collection<? extends T> sourceC


/**
* Returns a {@link Collection} after:
* Returns a new {@link Collection} after applying to {@code sourceCollection}:
* <p>
* - Filter its elements using {@link PartialFunction#isDefinedAt(Object)} of {@code partialFunction}
* - Transform its filtered elements using {@link PartialFunction#apply(Object)} of {@code partialFunction}
Expand Down Expand Up @@ -482,7 +482,7 @@ public static <T, E> List<E> collect(final Collection<? extends T> sourceCollect


/**
* Returns a {@link Collection} after:
* Returns a new {@link Collection} after applying to {@code sourceCollection}:
* <p>
* - Filter its elements using {@link PartialFunction#isDefinedAt(Object)} of {@code partialFunction}
* - Transform its filtered elements using {@link PartialFunction#apply(Object)} of {@code partialFunction}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ public static <K1, K2, V1, V2> Map<K2, V2> applyOrElse(final Map<? extends K1, ?


/**
* Returns a {@link Map} after:
* Returns a new {@link Map} after applying to {@code sourceMap}:
* <p>
* - Filter its elements using {@code filterPredicate}
* - Transform its filtered elements using {@code mapFunction}
Expand Down Expand Up @@ -405,7 +405,7 @@ public static <K1, K2, V1, V2> Map<K2, V2> collect(final Map<? extends K1, ? ext


/**
* Returns a {@link Map} after:
* Returns a new {@link Map} after applying to {@code sourceMap}:
* <p>
* - Filter its elements using {@code filterPredicate}
* - Transform its filtered elements using {@code mapFunction}
Expand Down Expand Up @@ -459,7 +459,7 @@ public static <K1, K2, V1, V2> Map<K2, V2> collect(final Map<? extends K1, ? ext


/**
* Returns a {@link Map} after:
* Returns a new {@link Map} after applying to {@code sourceMap}:
* <p>
* - Filter its elements using {@link PartialFunction#isDefinedAt(Object)} of {@code partialFunction}
* - Transform its filtered elements using {@link PartialFunction#apply(Object)} of {@code partialFunction}
Expand Down Expand Up @@ -502,7 +502,7 @@ public static <K1, K2, V1, V2> Map<K2, V2> collect(final Map<? extends K1, ? ext


/**
* Returns a {@link Map} after:
* Returns a new {@link Map} after applying to {@code sourceMap}:
* <p>
* - Filter its elements using {@link PartialFunction#isDefinedAt(Object)} of {@code partialFunction}
* - Transform its filtered elements using {@link PartialFunction#apply(Object)} of {@code partialFunction}
Expand Down

0 comments on commit f638b61

Please sign in to comment.