isArtifactedLeft method

bool isArtifactedLeft()

Implementation

bool isArtifactedLeft() {
  return _usingOp<bool>((arena, opStatus) {
    final resultPointer = arena<Bool>();

    bindings.MathLibIsArtifactedLeft(_pointer, resultPointer, opStatus);
    opStatus.ref.throwIfNotSuccessful();

    return resultPointer.value;
  });
}