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

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


        return this;
    }

    public IntIntHashMap withoutAllKeys(IntIterable keys)
    {
        keys.forEach(new IntProcedure()
        {
            public void value(int key)
            {
                IntIntHashMap.this.removeKey(key);
            }
View Full Code Here


        return this;
    }

    public IntByteHashMap withoutAllKeys(IntIterable keys)
    {
        keys.forEach(new IntProcedure()
        {
            public void value(int key)
            {
                IntByteHashMap.this.removeKey(key);
            }
View Full Code Here

        public int[] toArray()
        {
            int size = IntByteHashMap.this.size();
            final int[] result = new int[size];
            IntByteHashMap.this.forEachKey(new IntProcedure()
            {
                private int index;

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

        return this;
    }

    public IntLongHashMap withoutAllKeys(IntIterable keys)
    {
        keys.forEach(new IntProcedure()
        {
            public void value(int key)
            {
                IntLongHashMap.this.removeKey(key);
            }
View Full Code Here

        public int[] toArray()
        {
            int size = IntLongHashMap.this.size();
            final int[] result = new int[size];
            IntLongHashMap.this.forEachKey(new IntProcedure()
            {
                private int index;

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

        public int[] toArray()
        {
            int size = IntCharHashMap.this.size();
            final int[] result = new int[size];
            IntCharHashMap.this.forEachKey(new IntProcedure()
            {
                private int index;

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

        return this;
    }

    public IntCharHashMap withoutAllKeys(IntIterable keys)
    {
        keys.forEach(new IntProcedure()
        {
            public void value(int key)
            {
                IntCharHashMap.this.removeKey(key);
            }
View Full Code Here

TOP

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

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.