isArtifactedRight method

bool isArtifactedRight()

Implementation

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

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

    return resultPointer.value;
  });
}