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

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


        public float[] toArray()
        {
            int size = FloatCharHashMap.this.size();
            final float[] result = new float[size];
            FloatCharHashMap.this.forEachKey(new FloatProcedure()
            {
                private int index;

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


        return this;
    }

    public FloatCharHashMap withoutAllKeys(FloatIterable keys)
    {
        keys.forEach(new FloatProcedure()
        {
            public void value(float key)
            {
                FloatCharHashMap.this.removeKey(key);
            }
View Full Code Here

        public float[] toArray()
        {
            int size = FloatDoubleHashMap.this.size();
            final float[] result = new float[size];
            FloatDoubleHashMap.this.forEachKey(new FloatProcedure()
            {
                private int index;

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

        return this;
    }

    public FloatDoubleHashMap withoutAllKeys(FloatIterable keys)
    {
        keys.forEach(new FloatProcedure()
        {
            public void value(float key)
            {
                FloatDoubleHashMap.this.removeKey(key);
            }
View Full Code Here

        public float[] toArray()
        {
            int size = FloatByteHashMap.this.size();
            final float[] result = new float[size];
            FloatByteHashMap.this.forEachKey(new FloatProcedure()
            {
                private int index;

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

        return this;
    }

    public FloatByteHashMap withoutAllKeys(FloatIterable keys)
    {
        keys.forEach(new FloatProcedure()
        {
            public void value(float key)
            {
                FloatByteHashMap.this.removeKey(key);
            }
View Full Code Here

        return this;
    }

    public FloatIntHashMap withoutAllKeys(FloatIterable keys)
    {
        keys.forEach(new FloatProcedure()
        {
            public void value(float key)
            {
                FloatIntHashMap.this.removeKey(key);
            }
View Full Code Here

        public float[] toArray()
        {
            int size = FloatIntHashMap.this.size();
            final float[] result = new float[size];
            FloatIntHashMap.this.forEachKey(new FloatProcedure()
            {
                private int index;

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

        public float[] toArray()
        {
            int size = FloatFloatHashMap.this.size();
            final float[] result = new float[size];
            FloatFloatHashMap.this.forEachKey(new FloatProcedure()
            {
                private int index;

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

        return this;
    }

    public FloatFloatHashMap withoutAllKeys(FloatIterable keys)
    {
        keys.forEach(new FloatProcedure()
        {
            public void value(float key)
            {
                FloatFloatHashMap.this.removeKey(key);
            }
View Full Code Here

TOP

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

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.