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

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


        return this;
    }

    public CharFloatHashMap withoutAllKeys(CharIterable keys)
    {
        keys.forEach(new CharProcedure()
        {
            public void value(char key)
            {
                CharFloatHashMap.this.removeKey(key);
            }
View Full Code Here


        return this;
    }

    public CharDoubleHashMap withoutAllKeys(CharIterable keys)
    {
        keys.forEach(new CharProcedure()
        {
            public void value(char key)
            {
                CharDoubleHashMap.this.removeKey(key);
            }
View Full Code Here

        public char[] toArray()
        {
            int size = CharDoubleHashMap.this.size();
            final char[] result = new char[size];
            CharDoubleHashMap.this.forEachKey(new CharProcedure()
            {
                private int index;

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

        return this;
    }

    public CharLongHashMap withoutAllKeys(CharIterable keys)
    {
        keys.forEach(new CharProcedure()
        {
            public void value(char key)
            {
                CharLongHashMap.this.removeKey(key);
            }
View Full Code Here

        public char[] toArray()
        {
            int size = CharLongHashMap.this.size();
            final char[] result = new char[size];
            CharLongHashMap.this.forEachKey(new CharProcedure()
            {
                private int index;

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

        public char[] toArray()
        {
            int size = CharFloatHashMap.this.size();
            final char[] result = new char[size];
            CharFloatHashMap.this.forEachKey(new CharProcedure()
            {
                private int index;

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

        return this;
    }

    public CharByteHashMap withoutAllKeys(CharIterable keys)
    {
        keys.forEach(new CharProcedure()
        {
            public void value(char key)
            {
                CharByteHashMap.this.removeKey(key);
            }
View Full Code Here

        public char[] toArray()
        {
            int size = CharByteHashMap.this.size();
            final char[] result = new char[size];
            CharByteHashMap.this.forEachKey(new CharProcedure()
            {
                private int index;

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

        public char[] toArray()
        {
            int size = CharCharHashMap.this.size();
            final char[] result = new char[size];
            CharCharHashMap.this.forEachKey(new CharProcedure()
            {
                private int index;

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

        return this;
    }

    public CharCharHashMap withoutAllKeys(CharIterable keys)
    {
        keys.forEach(new CharProcedure()
        {
            public void value(char key)
            {
                CharCharHashMap.this.removeKey(key);
            }
View Full Code Here

TOP

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

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.