asBool method

List<bool> asBool()

Conversion methods which delegate to MarshalledObject

Implementation

List<bool> asBool()
{
  List<bool> collector = [];

  for (int i=0; i < size(); i++)
  {
    collector.add( get(i).asBool() );
  }

  return collector;
}