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

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


    public void writeExternal(final ObjectOutput out) throws IOException
    {
        out.writeInt(this.set.size());
        try
        {
            this.set.forEach(new CheckedLongProcedure()
            {
                @Override
                public void safeValue(long item) throws Exception
                {
                    out.writeLong(item);
View Full Code Here


        public void writeExternal(final ObjectOutput out) throws IOException
        {
            out.writeInt(this.stack.size());
            try
            {
                this.stack.forEach(new CheckedLongProcedure()
                {
                    @Override
                    public void safeValue(long item) throws IOException
                    {
                        out.writeLong(item);
View Full Code Here

TOP

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

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.