Ice.ByteSeqHelper Maven / Gradle / Ivy
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
//
// Ice version 3.7.4
//
//
//
// Generated from file `BuiltinSequences.ice'
//
// Warning: do not edit this file.
//
//
//
package Ice;
public final class ByteSeqHelper
{
public static void
write(OutputStream ostr, byte[] v)
{
ostr.writeByteSeq(v);
}
public static byte[]
read(InputStream istr)
{
byte[] v;
v = istr.readByteSeq();
return v;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy