Stay organized with collections
Save and categorize content based on your preferences.
BiConsumer
@FunctionalInterface interface BiConsumer<T : Any!, U : Any!>
Represents an operation that accepts two input arguments and returns no result. This is the two-arity specialization of Consumer
. Unlike most other functional interfaces, BiConsumer
is expected to operate via side-effects.
This is a functional interface whose functional method is accept(java.lang.Object,java.lang.Object)
.
Summary
Public methods |
abstract Unit |
Performs this operation on the given arguments.
|
open BiConsumer<T, U>! |
Returns a composed BiConsumer that performs, in sequence, this operation followed by the after operation.
|
Public methods
accept
abstract fun accept(
t: T,
u: U
): Unit
Performs this operation on the given arguments.
Parameters |
t |
T: the first input argument |
u |
U: the second input argument |
andThen
open fun andThen(after: BiConsumer<in T, in U>!): BiConsumer<T, U>!
Returns a composed BiConsumer
that performs, in sequence, this operation followed by the after
operation. If performing either operation throws an exception, it is relayed to the caller of the composed operation. If performing this operation throws an exception, the after
operation will not be performed.
Parameters |
after |
BiConsumer<in T, in U>!: the operation to perform after this operation |
Return |
BiConsumer<T, U>! |
a composed BiConsumer that performs in sequence this operation followed by the after operation |
Exceptions |
java.lang.NullPointerException |
if after is null |
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-02-10 UTC."],[],[],null,["# BiConsumer\n\nAdded in [API level 24](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels)\n\nBiConsumer\n==========\n\n```\n@FunctionalInterface interface BiConsumer\u003cT : Any!, U : Any!\u003e\n```\n\n|------------------------------------|\n| [java.util.function.BiConsumer](#) |\n\nRepresents an operation that accepts two input arguments and returns no result. This is the two-arity specialization of [Consumer](/reference/kotlin/java/util/function/Consumer). Unlike most other functional interfaces, `BiConsumer` is expected to operate via side-effects.\n\nThis is a [functional interface](/reference/kotlin/java/util/function/package-summary) whose functional method is [accept(java.lang.Object,java.lang.Object)](#accept(java.util.function.BiConsumer.T,%20java.util.function.BiConsumer.U)).\n\nSummary\n-------\n\n| Public methods ||\n|---------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| abstract [Unit](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) | [accept](#accept(java.util.function.BiConsumer.T,%20java.util.function.BiConsumer.U))`(`t:` `T`, `u:` `U`)` Performs this operation on the given arguments. |\n| open [BiConsumer](#)\\\u003cT, U\\\u003e! | [andThen](#andThen(java.util.function.BiConsumer))`(`after:` `[BiConsumer](#)\u003cin` `T,` `in` `U\u003e!`)` Returns a composed `BiConsumer` that performs, in sequence, this operation followed by the `after` operation. |\n\nPublic methods\n--------------\n\n### accept\n\nAdded in [API level 24](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nabstract fun accept(\n t: T, \n u: U\n): Unit\n```\n\nPerforms this operation on the given arguments.\n\n| Parameters ||\n|-----|------------------------------|\n| `t` | T: the first input argument |\n| `u` | U: the second input argument |\n\n### andThen\n\nAdded in [API level 24](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nopen fun andThen(after: BiConsumer\u003cin T, in U\u003e!): BiConsumer\u003cT, U\u003e!\n```\n\nReturns a composed `BiConsumer` that performs, in sequence, this operation followed by the `after` operation. If performing either operation throws an exception, it is relayed to the caller of the composed operation. If performing this operation throws an exception, the `after` operation will not be performed.\n\n| Parameters ||\n|---------|-------------------------------------------------------------------------------|\n| `after` | [BiConsumer](#)\\\u003cin T, in U\\\u003e!: the operation to perform after this operation |\n\n| Return ||\n|--------------------------|----------------------------------------------------------------------------------------------------|\n| [BiConsumer](#)\u003cT,` `U\u003e! | a composed `BiConsumer` that performs in sequence this operation followed by the `after` operation |\n\n| Exceptions ||\n|----------------------------------|--------------------|\n| `java.lang.NullPointerException` | if `after` is null |"]]