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

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


        return this;
    }

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


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

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

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

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

        return this;
    }

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

        return this;
    }

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

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

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

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

                public void value(char each)
                {
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.