Package com.gs.collections.impl.block.procedure.checked.primitive

Examples of com.gs.collections.impl.block.procedure.checked.primitive.CheckedIntIntProcedure


        public void writeExternal(final ObjectOutput out) throws IOException
        {
            out.writeInt(this.map.size());
            try
            {
                this.map.forEachKeyValue(new CheckedIntIntProcedure()
                {
                    @Override
                    public void safeValue(int key, int value) throws IOException
                    {
                        out.writeInt(key);
View Full Code Here


        public void writeExternal(final ObjectOutput out) throws IOException
        {
            out.writeInt(this.bag.sizeDistinct());
            try
            {
                this.bag.forEachWithOccurrences(new CheckedIntIntProcedure()
                {
                    @Override
                    public void safeValue(int item, int count) throws IOException
                    {
                        out.writeInt(item);
View Full Code Here

TOP

Related Classes of com.gs.collections.impl.block.procedure.checked.primitive.CheckedIntIntProcedure

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.