www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 4471] New: rebindable() helper function

reply d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=4471

           Summary: rebindable() helper function
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Keywords: patch
          Severity: enhancement
          Priority: P2
         Component: DMD
        AssignedTo: nobody puremagic.com
        ReportedBy: bearophile_hugs eml.cc



A helper function for Rebindable!() can help remove some noise from the code,
this is a first try:


import std.typecons, std.traits;

template isImmutable(T) {
    enum bool isImmutable = is(const(T) == T) || is(immutable(T) == T);
}

Rebindable!T rebindable(T)(T obj)
  if ((is(T == class) || is(T == interface) || isArray!T) && isImmutable!T) {
    return Rebindable!T(obj);
}

// usage example
import std.stdio;
class Foo {}
void main() {
    auto a = rebindable(new immutable(Foo));
    assert(a.sizeof == 4);
    a = new immutable(Foo);
}


I don't know if isImmutable!() works well in all cases, I have not tested it
much. But a template like isImmutable can be useful in Phobos.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Jul 16 2010
parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=4471


bearophile_hugs eml.cc changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED



Fixed in:
http://dsource.org/projects/phobos/changeset/1849

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Aug 15 2010