Package com.gs.collections.api.block.procedure.primitive

Examples of com.gs.collections.api.block.procedure.primitive.ShortProcedure


        public short[] toArray()
        {
            int size = ShortBooleanHashMap.this.size();
            final short[] result = new short[size];
            ShortBooleanHashMap.this.forEachKey(new ShortProcedure()
            {
                private int index;

                public void value(short each)
                {
View Full Code Here


        return this;
    }

    public ShortBooleanHashMap withoutAllKeys(ShortIterable keys)
    {
        keys.forEach(new ShortProcedure()
        {
            public void value(short key)
            {
                ShortBooleanHashMap.this.removeKey(key);
            }
View Full Code Here

        return this;
    }

    public ShortByteHashMap withoutAllKeys(ShortIterable keys)
    {
        keys.forEach(new ShortProcedure()
        {
            public void value(short key)
            {
                ShortByteHashMap.this.removeKey(key);
            }
View Full Code Here

        public short[] toArray()
        {
            int size = ShortByteHashMap.this.size();
            final short[] result = new short[size];
            ShortByteHashMap.this.forEachKey(new ShortProcedure()
            {
                private int index;

                public void value(short each)
                {
View Full Code Here

        public short[] toArray()
        {
            int size = ShortDoubleHashMap.this.size();
            final short[] result = new short[size];
            ShortDoubleHashMap.this.forEachKey(new ShortProcedure()
            {
                private int index;

                public void value(short each)
                {
View Full Code Here

        return this;
    }

    public ShortDoubleHashMap withoutAllKeys(ShortIterable keys)
    {
        keys.forEach(new ShortProcedure()
        {
            public void value(short key)
            {
                ShortDoubleHashMap.this.removeKey(key);
            }
View Full Code Here

TOP

Related Classes of com.gs.collections.api.block.procedure.primitive.ShortProcedure

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.