Interface SignalLengthGetter<T>

Type Parameters:
T - the type of the signal
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface
public interface SignalLengthGetter<T>
A function that accepts one signal and produces the length of the signal.
  • Method Summary

    Modifier and Type Method Description
    int length​(T obj)
    Returns the length of obj.
  • Method Details

    • length

      int length​(T obj)
      Returns the length of obj.