R - the result type
public IntCoAcceptor<R> extends BaseCoAcceptor<R>
An acceptor that takes an integer value. Includes default functions to cater for the common cases of strings or byte arrays being used for integer values.
@Nullable
java.lang.Object accept(int value,
@NotNull
kotlin.coroutines.Continuation<? super kotlin.Unit> p)
Accept a value.
value - the value to be processed@Nullable
java.lang.Object accept(@NotNull
java.lang.CharSequence charSequence,
@NotNull
kotlin.coroutines.Continuation<? super kotlin.Unit> p)
Accept a CharSequence (e.g. String) as a sequence of integer values.
charSequence - the CharSequence@Nullable
java.lang.Object accept(@NotNull
kotlin.Array[] bytes,
int offset,
int length,
@NotNull
kotlin.coroutines.Continuation<? super kotlin.Unit> p)
Accept a ByteArray as a sequence of integer values.