Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Kuper (0.14 sec)

  1. src/main/java/org/codelibs/core/collection/CollectionsUtil.java

         * @return {@link ConcurrentSkipListMap}の新しいインスタンス
         * @see ConcurrentSkipListMap#ConcurrentSkipListMap(Comparator)
         */
        public static <K, V> ConcurrentSkipListMap<K, V> newConcurrentSkipListMap(final Comparator<? super K> c) {
            return new ConcurrentSkipListMap<>(c);
        }
    
        /**
         * {@link ConcurrentSkipListMap}の新しいインスタンスを作成して返します。
         *
         * @param <K>
         *            {@link ConcurrentSkipListMap}のキーの型
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 53.9K bytes
    - Viewed (0)
Back to top