Skip to content

Commit

Permalink
Switch JvmName to method that might be made HIDDEN with context recei…
Browse files Browse the repository at this point in the history
…vers
  • Loading branch information
nomisRev committed Jul 7, 2023
1 parent 542d42a commit 2df0b00
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -525,36 +525,36 @@ public open class RaiseAccumulate<Error>(
mapOrAccumulate { (_, a) -> a.bind() }.bindNel()

@RaiseDSL
@JvmName("mapOrAccumulateExt")
public inline fun <A, B> Iterable<A>.mapOrAccumulate(
transform: RaiseAccumulate<Error>.(A) -> B
): List<B> = raise.mapOrAccumulate(this, transform)

@RaiseDSL
@JvmName("mapOrAccumulateExt")
public inline fun <A, B> NonEmptyList<A>.mapOrAccumulate(
transform: RaiseAccumulate<Error>.(A) -> B
): NonEmptyList<B> = raise.mapOrAccumulate(this, transform)

@RaiseDSL
@JvmName("mapOrAccumulateExt")
public inline fun <A, B> NonEmptySet<A>.mapOrAccumulate(
transform: RaiseAccumulate<Error>.(A) -> B
): NonEmptySet<B> = raise.mapOrAccumulate(this, transform)

@RaiseDSL
@JvmName("_mapOrAccumulate")
public inline fun <A, B> mapOrAccumulate(
iterable: Iterable<A>,
transform: RaiseAccumulate<Error>.(A) -> B
): List<B> = raise.mapOrAccumulate(iterable, transform)

@RaiseDSL
@JvmName("_mapOrAccumulate")
public inline fun <A, B> mapOrAccumulate(
list: NonEmptyList<A>,
transform: RaiseAccumulate<Error>.(A) -> B
): NonEmptyList<B> = raise.mapOrAccumulate(list, transform)

@RaiseDSL
@JvmName("_mapOrAccumulate")
public inline fun <A, B> mapOrAccumulate(
set: NonEmptySet<A>,
transform: RaiseAccumulate<Error>.(A) -> B
Expand Down

0 comments on commit 2df0b00

Please sign in to comment.