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

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


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


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

TOP

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

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.