www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 19049] New: object.hashOf - don't wrap a public function with

https://issues.dlang.org/show_bug.cgi?id=19049

          Issue ID: 19049
           Summary: object.hashOf - don't wrap a public function with an
                    identical public function
           Product: D
           Version: D2
          Hardware: All
                OS: All
            Status: NEW
          Severity: enhancement
          Priority: P1
         Component: druntime
          Assignee: nobody puremagic.com
          Reporter: n8sh.secondary hotmail.com

This is hashOf in object.d:

```
size_t hashOf(T)(auto ref T arg, size_t seed = 0)
{
    import core.internal.hash;
    return core.internal.hash.hashOf(arg, seed);
}
```

This serves no purpose because `core.internal.hash.hashOf` is public and also
has an `auto ref` argument. So `core.internal.hash.hashOf` should either be
publicly imported or exposed through an alias.

This issue has synergy with PR https://github.com/dlang/druntime/pull/2238.

--
Jul 02 2018