Robot Core Documentation
Loading...
Searching...
No Matches
edu.wpi.first.util.function.BooleanConsumer Interface Reference

Public Member Functions

void accept (boolean value)
 

Detailed Description

Represents an operation that accepts a single boolean-valued argument and returns no result. This is the primitive type specialization of java.util.function.Consumer for boolean. Unlike most other functional interfaces, BooleanConsumer is expected to operate via side effects.

This is a functional interface whose functional method is accept(boolean).

Member Function Documentation

◆ accept()

void edu.wpi.first.util.function.BooleanConsumer.accept ( boolean value)

Performs this operation on the given argument.

Parameters
valuethe input argument

The documentation for this interface was generated from the following file: