decodeVecDouble method

List<double> decodeVecDouble(
  1. Plaintext plaintext,
  2. int arrayLength
)

Decodes a Plaintext into a list of doubles.

Implementation

List<double> decodeVecDouble(Plaintext plaintext, int arrayLength) {
  Pointer<Double> ptr = _c_decode_vector_double(library, plaintext.obj);
  raiseForStatus();
  return arrayToDoubleList(ptr, arrayLength);
}