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

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


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


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

TOP

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

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.