search static method

int search(
  1. ArrayFloat values,
  2. double target
)

target After the first and before the last entry.

Implementation

static int search(ArrayFloat values, double target) {
  final result = SpineBindings.bindings.spine_animation_search_1(values.nativePtr.cast(), target);
  return result;
}