Interface UnaryVoidFunction<T>

All Superinterfaces:
Consumer<T>
All Known Subinterfaces:
EmitterFactory.Emitter
All Known Implementing Classes:
EmitterFactory.CompoundEmitter, EmitterFactory.FieldInsnEmitter, EmitterFactory.IntOperandEmitter, EmitterFactory.NullEmitter, EmitterFactory.SimpleEmitter, UnaryVoidFunctionBase

@Deprecated public interface UnaryVoidFunction<T> extends Consumer<T>
Deprecated.
replaced by Consumer
  • Method Summary

    Modifier and Type
    Method
    Description
    default void
    accept(T t)
    Deprecated.
     
    void
    evaluate(T arg)
    Deprecated.
     

    Methods inherited from interface java.util.function.Consumer

    andThen
  • Method Details

    • evaluate

      void evaluate(T arg)
      Deprecated.
    • accept

      default void accept(T t)
      Deprecated.
      Specified by:
      accept in interface Consumer<T>