Git Product home page Git Product logo

Comments (8)

gissuebot avatar gissuebot commented on May 7, 2024

Original comment posted by jared.l.levy on 2007-11-01 at 05:14 AM


What's the use case for that kind of copying? When writing application code, I'd
rather explicitly specify the class of the copy. To maintain the iteration ordering
of the original, you can use a class like a LinkedHashMap.

from guava.

gissuebot avatar gissuebot commented on May 7, 2024

Original comment posted by limpbizkit on 2007-11-01 at 04:51 PM


I'm thinking in particular of utility methods that return a copy of their input - this includes methods like
intersection(), transform(), and filter() for various collections types.

from guava.

gissuebot avatar gissuebot commented on May 7, 2024

Original comment posted by kevinb9n on 2007-11-02 at 02:15 AM


Quite simply, "a wish for a clone() that worked."

I agree that this would be good to support, for the same reasons that the (failed)
idea of clone() was created in the first place.

This would enable things like Sets.union() to do what people expect (I think).

btw, the other thing I'm aware of that you can't do generically to a collection is
get an unmodifiable view of it!

  public static <C extends Collection<?>> C unmodifiableView(C collection) { ... }

This seems closely related, in that to make it work, we'd have to have tedious
itemized support for all the JDK collections plus have some interface or something
that other collections would be required to implement if they want to participate.

Big Yuck for us, but possibly useful to users?


Labels: -Type-Defect, Type-Enhancement

from guava.

gissuebot avatar gissuebot commented on May 7, 2024

Original comment posted by [email protected] on 2009-09-15 at 06:17 AM


clone() on collections, like on the jdk collections, would be useful.

I just got the following exception from eclipselink-2.0 M7, this is the reference
implementation of JPA-2.0.

Target Invocation Exception: java.lang.CloneNotSupportedException:
com.google.common.collect.Lists$TwoPlusArrayList
        at
org.eclipse.persistence.internal.jpa.transaction.EntityTransactionImpl.commitInternal(EntityTransactionImpl.java:102)
        at
org.eclipse.persistence.internal.jpa.transaction.EntityTransactionImpl.commit(EntityTransactionImpl.java:63)
        at org.metawb.astro.db.PersonTest.linkPersonTag(PersonTest.java:191)

FYI, This came from Lists.asList
        em.getTransaction().begin();
        for(int i = 0; i < 3; i++) {
            ps.get(i).setTagtypeCollection(Lists.asList(
                    tts.get(0), tts.get(i+1), new Tagtype[0]));
        }
        em.getTransaction().commit();

but this works ok

        ps.get(i).setTagtypeCollection(Lists.newArrayList(
                tts.get(0), tts.get(i+1)));

from guava.

gissuebot avatar gissuebot commented on May 7, 2024

Original comment posted by kevinb9n on 2009-09-17 at 06:02 PM


(No comment entered for this change.)


Labels: Milestone-Post1.0

from guava.

gissuebot avatar gissuebot commented on May 7, 2024

Original comment posted by [email protected] on 2010-07-30 at 03:53 AM


(No comment entered for this change.)


Labels: -Milestone-Post1.0

from guava.

gissuebot avatar gissuebot commented on May 7, 2024

Original comment posted by [email protected] on 2010-07-30 at 03:56 AM


(No comment entered for this change.)


Labels: -Priority-Medium

from guava.

gissuebot avatar gissuebot commented on May 7, 2024

Original comment posted by [email protected] on 2011-01-26 at 08:51 PM


This is out of the scope of the guava project.


Status: WontFix

from guava.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.