コード例 #1
0
            public bool TryWeakSuccessor(K item, out K res)
            {
                bool success = sorteddict.TryWeakSuccessor(item, out SCG.KeyValuePair <K, V> pRes);

                res = pRes.Key;
                return(success);
            }
コード例 #2
0
 /// <summary>
 /// Find the entry in the dictionary whose key is the
 /// weak successor of the specified key.
 /// </summary>
 /// <param name="key">The key</param>
 /// <param name="res">The weak successor, if any</param>
 /// <returns>True if the key has a weak successor</returns>
 public bool TryWeakSuccessor(K key, out SCG.KeyValuePair <K, V> res) => sorteddict.TryWeakSuccessor(key, out res);
コード例 #3
0
 /// <summary>
 /// Find the entry in the dictionary whose key is the
 /// weak successor of the specified key.
 /// </summary>
 /// <param name="key">The key</param>
 /// <param name="res">The weak successor, if any</param>
 /// <returns>True if the key has a weak successor</returns>
 public bool TryWeakSuccessor(K key, out KeyValuePair <K, V> res)
 {
     return(sorteddict.TryWeakSuccessor(key, out res));
 }