/src/rt/typeinfo/ti_delegate.d
http://github.com/AlexeyProkhin/druntime · D · 57 lines · 33 code · 11 blank · 13 comment · 1 complexity · b550b1b0324fa0f1ab68ffc0ccdfaf9b MD5 · raw file
- /**
- * TypeInfo support code.
- *
- * Copyright: Copyright Digital Mars 2004 - 2009.
- * License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
- * Authors: Walter Bright
- */
- /* Copyright Digital Mars 2004 - 2009.
- * Distributed under the Boost Software License, Version 1.0.
- * (See accompanying file LICENSE or copy at
- * http://www.boost.org/LICENSE_1_0.txt)
- */
- module rt.typeinfo.ti_delegate;
- private import rt.util.hash;
- // delegate
- alias void delegate(int) dg;
- class TypeInfo_D : TypeInfo
- {
- @trusted:
- const:
- pure:
- nothrow:
- override size_t getHash(in void* p)
- {
- return hashOf(p, dg.sizeof);
- }
- override bool equals(in void* p1, in void* p2)
- {
- return *cast(dg *)p1 == *cast(dg *)p2;
- }
- override @property size_t tsize() nothrow pure
- {
- return dg.sizeof;
- }
- override void swap(void *p1, void *p2)
- {
- dg t;
- t = *cast(dg *)p1;
- *cast(dg *)p1 = *cast(dg *)p2;
- *cast(dg *)p2 = t;
- }
- override @property uint flags() nothrow pure
- {
- return 1;
- }
- }