// 
// Decompiled by Procyon v0.6.0
// 

package it.unimi.dsi.fastutil.chars;

import it.unimi.dsi.fastutil.objects.ObjectIterator;
import it.unimi.dsi.fastutil.objects.ObjectBidirectionalIterator;
import java.util.Comparator;
import java.util.Collection;
import java.util.Set;
import it.unimi.dsi.fastutil.objects.ObjectSet;
import it.unimi.dsi.fastutil.ints.IntCollection;
import java.util.Map;
import it.unimi.dsi.fastutil.objects.ObjectSortedSet;
import java.util.SortedMap;

public interface Char2IntSortedMap extends Char2IntMap, SortedMap<Character, Integer>
{
    Char2IntSortedMap subMap(final char p0, final char p1);
    
    Char2IntSortedMap headMap(final char p0);
    
    Char2IntSortedMap tailMap(final char p0);
    
    char firstCharKey();
    
    char lastCharKey();
    
    @Deprecated
    default Char2IntSortedMap subMap(final Character from, final Character to) {
        return this.subMap((char)from, (char)to);
    }
    
    @Deprecated
    default Char2IntSortedMap headMap(final Character to) {
        return this.headMap((char)to);
    }
    
    @Deprecated
    default Char2IntSortedMap tailMap(final Character from) {
        return this.tailMap((char)from);
    }
    
    @Deprecated
    default Character firstKey() {
        return this.firstCharKey();
    }
    
    @Deprecated
    default Character lastKey() {
        return this.lastCharKey();
    }
    
    @Deprecated
    default ObjectSortedSet<Map.Entry<Character, Integer>> entrySet() {
        return (ObjectSortedSet<Map.Entry<Character, Integer>>)this.char2IntEntrySet();
    }
    
    ObjectSortedSet<Char2IntMap.Entry> char2IntEntrySet();
    
    CharSortedSet keySet();
    
    IntCollection values();
    
    CharComparator comparator();
    
    public interface FastSortedEntrySet extends ObjectSortedSet<Char2IntMap.Entry>, FastEntrySet
    {
        ObjectBidirectionalIterator<Char2IntMap.Entry> fastIterator();
        
        ObjectBidirectionalIterator<Char2IntMap.Entry> fastIterator(final Char2IntMap.Entry p0);
    }
}
