blob: 7cb9efb44b069c6bbb919ec6b87ccf1472308bbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
declare module "ice"
{
namespace Ice
{
class MapUtil
{
static equals<K, V>(lhs:Map<K,V>, rhs:Map<K, V>):boolean;
}
}
}
|