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

package it.unimi.dsi.fastutil.longs;

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.chars.CharCollection;
import java.util.Map;
import it.unimi.dsi.fastutil.objects.ObjectSortedSet;
import java.util.SortedMap;

public interface Long2CharSortedMap extends Long2CharMap, SortedMap<Long, Character>
{
    Long2CharSortedMap subMap(final long p0, final long p1);
    
    Long2CharSortedMap headMap(final long p0);
    
    Long2CharSortedMap tailMap(final long p0);
    
    long firstLongKey();
    
    long lastLongKey();
    
    @Deprecated
    default Long2CharSortedMap subMap(final Long from, final Long to) {
        return this.subMap((long)from, (long)to);
    }
    
    @Deprecated
    default Long2CharSortedMap headMap(final Long to) {
        return this.headMap((long)to);
    }
    
    @Deprecated
    default Long2CharSortedMap tailMap(final Long from) {
        return this.tailMap((long)from);
    }
    
    @Deprecated
    default Long firstKey() {
        return this.firstLongKey();
    }
    
    @Deprecated
    default Long lastKey() {
        return this.lastLongKey();
    }
    
    @Deprecated
    default ObjectSortedSet<Map.Entry<Long, Character>> entrySet() {
        return (ObjectSortedSet<Map.Entry<Long, Character>>)this.long2CharEntrySet();
    }
    
    ObjectSortedSet<Long2CharMap.Entry> long2CharEntrySet();
    
    LongSortedSet keySet();
    
    CharCollection values();
    
    LongComparator comparator();
    
    public interface FastSortedEntrySet extends ObjectSortedSet<Long2CharMap.Entry>, FastEntrySet
    {
        ObjectBidirectionalIterator<Long2CharMap.Entry> fastIterator();
        
        ObjectBidirectionalIterator<Long2CharMap.Entry> fastIterator(final Long2CharMap.Entry p0);
    }
}
