readTotalPowFromArtifacts method
Implementation
TotalPowValues readTotalPowFromArtifacts(){
return _usingOp<TotalPowValues>((arena, opStatus) {
final totalPowLeft = arena<Double>();
final totalPowRight = arena<Double>();
bindings.MathLibReadTotalPowFromArtifacts(_pointer, totalPowLeft, totalPowRight, opStatus);
opStatus.ref.throwIfNotSuccessful();
return TotalPowValues(left: totalPowLeft.value, right: totalPowRight.value);
});
}