TestArenaMapLite constructor
TestArenaMapLite({
- Iterable<
MapEntry< ? mapInt32Int32,int, int> > - Iterable<
MapEntry< ? mapInt64Int64,Int64, Int64> > - Iterable<
MapEntry< ? mapUint32Uint32,int, int> > - Iterable<
MapEntry< ? mapUint64Uint64,Int64, Int64> > - Iterable<
MapEntry< ? mapSint32Sint32,int, int> > - Iterable<
MapEntry< ? mapSint64Sint64,Int64, Int64> > - Iterable<
MapEntry< ? mapFixed32Fixed32,int, int> > - Iterable<
MapEntry< ? mapFixed64Fixed64,Int64, Int64> > - Iterable<
MapEntry< ? mapSfixed32Sfixed32,int, int> > - Iterable<
MapEntry< ? mapSfixed64Sfixed64,Int64, Int64> > - Iterable<
MapEntry< ? mapInt32Float,int, double> > - Iterable<
MapEntry< ? mapInt32Double,int, double> > - Iterable<
MapEntry< ? mapBoolBool,bool, bool> > - Iterable<
MapEntry< ? mapStringString,String, String> > - Iterable<
MapEntry< ? mapInt32Bytes,int, List< >int> > - Iterable<
MapEntry< ? mapInt32Enum,int, MapEnumLite> > - Iterable<
MapEntry< ? mapInt32ForeignMessage,int, ForeignMessageArenaLite> >
Implementation
factory TestArenaMapLite({
$core.Iterable<$core.MapEntry<$core.int, $core.int>>? mapInt32Int32,
$core.Iterable<$core.MapEntry<$fixnum.Int64, $fixnum.Int64>>? mapInt64Int64,
$core.Iterable<$core.MapEntry<$core.int, $core.int>>? mapUint32Uint32,
$core.Iterable<$core.MapEntry<$fixnum.Int64, $fixnum.Int64>>?
mapUint64Uint64,
$core.Iterable<$core.MapEntry<$core.int, $core.int>>? mapSint32Sint32,
$core.Iterable<$core.MapEntry<$fixnum.Int64, $fixnum.Int64>>?
mapSint64Sint64,
$core.Iterable<$core.MapEntry<$core.int, $core.int>>? mapFixed32Fixed32,
$core.Iterable<$core.MapEntry<$fixnum.Int64, $fixnum.Int64>>?
mapFixed64Fixed64,
$core.Iterable<$core.MapEntry<$core.int, $core.int>>? mapSfixed32Sfixed32,
$core.Iterable<$core.MapEntry<$fixnum.Int64, $fixnum.Int64>>?
mapSfixed64Sfixed64,
$core.Iterable<$core.MapEntry<$core.int, $core.double>>? mapInt32Float,
$core.Iterable<$core.MapEntry<$core.int, $core.double>>? mapInt32Double,
$core.Iterable<$core.MapEntry<$core.bool, $core.bool>>? mapBoolBool,
$core.Iterable<$core.MapEntry<$core.String, $core.String>>? mapStringString,
$core.Iterable<$core.MapEntry<$core.int, $core.List<$core.int>>>?
mapInt32Bytes,
$core.Iterable<$core.MapEntry<$core.int, MapEnumLite>>? mapInt32Enum,
$core.Iterable<$core.MapEntry<$core.int, ForeignMessageArenaLite>>?
mapInt32ForeignMessage,
}) {
final result = create();
if (mapInt32Int32 != null) result.mapInt32Int32.addEntries(mapInt32Int32);
if (mapInt64Int64 != null) result.mapInt64Int64.addEntries(mapInt64Int64);
if (mapUint32Uint32 != null)
result.mapUint32Uint32.addEntries(mapUint32Uint32);
if (mapUint64Uint64 != null)
result.mapUint64Uint64.addEntries(mapUint64Uint64);
if (mapSint32Sint32 != null)
result.mapSint32Sint32.addEntries(mapSint32Sint32);
if (mapSint64Sint64 != null)
result.mapSint64Sint64.addEntries(mapSint64Sint64);
if (mapFixed32Fixed32 != null)
result.mapFixed32Fixed32.addEntries(mapFixed32Fixed32);
if (mapFixed64Fixed64 != null)
result.mapFixed64Fixed64.addEntries(mapFixed64Fixed64);
if (mapSfixed32Sfixed32 != null)
result.mapSfixed32Sfixed32.addEntries(mapSfixed32Sfixed32);
if (mapSfixed64Sfixed64 != null)
result.mapSfixed64Sfixed64.addEntries(mapSfixed64Sfixed64);
if (mapInt32Float != null) result.mapInt32Float.addEntries(mapInt32Float);
if (mapInt32Double != null)
result.mapInt32Double.addEntries(mapInt32Double);
if (mapBoolBool != null) result.mapBoolBool.addEntries(mapBoolBool);
if (mapStringString != null)
result.mapStringString.addEntries(mapStringString);
if (mapInt32Bytes != null) result.mapInt32Bytes.addEntries(mapInt32Bytes);
if (mapInt32Enum != null) result.mapInt32Enum.addEntries(mapInt32Enum);
if (mapInt32ForeignMessage != null)
result.mapInt32ForeignMessage.addEntries(mapInt32ForeignMessage);
return result;
}