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

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


        public long[] toArray()
        {
            int size = LongFloatHashMap.this.size();
            final long[] result = new long[size];
            LongFloatHashMap.this.forEachKey(new LongProcedure()
            {
                private int index;

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


        return this;
    }

    public LongFloatHashMap withoutAllKeys(LongIterable keys)
    {
        keys.forEach(new LongProcedure()
        {
            public void value(long key)
            {
                LongFloatHashMap.this.removeKey(key);
            }
View Full Code Here

        public long[] toArray()
        {
            int size = LongObjectHashMap.this.size();
            final long[] result = new long[size];
            LongObjectHashMap.this.forEachKey(new LongProcedure()
            {
                private int index;

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

        public long[] toArray()
        {
            int size = LongShortHashMap.this.size();
            final long[] result = new long[size];
            LongShortHashMap.this.forEachKey(new LongProcedure()
            {
                private int index;

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

        return this;
    }

    public LongShortHashMap withoutAllKeys(LongIterable keys)
    {
        keys.forEach(new LongProcedure()
        {
            public void value(long key)
            {
                LongShortHashMap.this.removeKey(key);
            }
View Full Code Here

        public long[] toArray()
        {
            int size = LongByteHashMap.this.size();
            final long[] result = new long[size];
            LongByteHashMap.this.forEachKey(new LongProcedure()
            {
                private int index;

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

        return this;
    }

    public LongByteHashMap withoutAllKeys(LongIterable keys)
    {
        keys.forEach(new LongProcedure()
        {
            public void value(long key)
            {
                LongByteHashMap.this.removeKey(key);
            }
View Full Code Here

        return this;
    }

    public LongLongHashMap withoutAllKeys(LongIterable keys)
    {
        keys.forEach(new LongProcedure()
        {
            public void value(long key)
            {
                LongLongHashMap.this.removeKey(key);
            }
View Full Code Here

        public long[] toArray()
        {
            int size = LongLongHashMap.this.size();
            final long[] result = new long[size];
            LongLongHashMap.this.forEachKey(new LongProcedure()
            {
                private int index;

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

        return this;
    }

    public LongIntHashMap withoutAllKeys(LongIterable keys)
    {
        keys.forEach(new LongProcedure()
        {
            public void value(long key)
            {
                LongIntHashMap.this.removeKey(key);
            }
View Full Code Here

TOP

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

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.