// // Copyright (c) ZeroC, Inc. All rights reserved. // // // Ice version 3.7.11 // // // // Generated from file `BuiltinSequences.ice' // // Warning: do not edit this file. // // // export namespace Ice { /** * A sequence of bools. */ type BoolSeq = boolean[]; class BoolSeqHelper { static write(outs:OutputStream, value:BoolSeq):void; static read(ins:InputStream):BoolSeq; } /** * A sequence of bytes. */ type ByteSeq = Uint8Array; class ByteSeqHelper { static write(outs:OutputStream, value:ByteSeq):void; static read(ins:InputStream):ByteSeq; } /** * A sequence of shorts. */ type ShortSeq = number[]; class ShortSeqHelper { static write(outs:OutputStream, value:ShortSeq):void; static read(ins:InputStream):ShortSeq; } /** * A sequence of ints. */ type IntSeq = number[]; class IntSeqHelper { static write(outs:OutputStream, value:IntSeq):void; static read(ins:InputStream):IntSeq; } /** * A sequence of longs. */ type LongSeq = Ice.Long[]; class LongSeqHelper { static write(outs:OutputStream, value:LongSeq):void; static read(ins:InputStream):LongSeq; } /** * A sequence of floats. */ type FloatSeq = number[]; class FloatSeqHelper { static write(outs:OutputStream, value:FloatSeq):void; static read(ins:InputStream):FloatSeq; } /** * A sequence of doubles. */ type DoubleSeq = number[]; class DoubleSeqHelper { static write(outs:OutputStream, value:DoubleSeq):void; static read(ins:InputStream):DoubleSeq; } /** * A sequence of strings. */ type StringSeq = string[]; class StringSeqHelper { static write(outs:OutputStream, value:StringSeq):void; static read(ins:InputStream):StringSeq; } /** * A sequence of objects. */ type ObjectSeq = Ice.Value[]; class ObjectSeqHelper { static write(outs:OutputStream, value:ObjectSeq):void; static read(ins:InputStream):ObjectSeq; } /** * A sequence of object proxies. */ type ObjectProxySeq = Ice.ObjectPrx[]; class ObjectProxySeqHelper { static write(outs:OutputStream, value:ObjectProxySeq):void; static read(ins:InputStream):ObjectProxySeq; } }