decodeVecDouble method
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);
}