/src/rt/typeinfo/ti_int.d
http://github.com/AlexeyProkhin/druntime · D · 59 lines · 36 code · 10 blank · 13 comment · 4 complexity · 6e1be4efd61bb5b64e4d73ccaf796897 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_int;
- // int
- class TypeInfo_i : TypeInfo
- {
- @trusted:
- const:
- pure:
- nothrow:
- override string toString() const pure nothrow @safe { return "int"; }
- override size_t getHash(in void* p)
- {
- return *cast(uint *)p;
- }
- override bool equals(in void* p1, in void* p2)
- {
- return *cast(uint *)p1 == *cast(uint *)p2;
- }
- override int compare(in void* p1, in void* p2)
- {
- if (*cast(int*) p1 < *cast(int*) p2)
- return -1;
- else if (*cast(int*) p1 > *cast(int*) p2)
- return 1;
- return 0;
- }
- override @property size_t tsize() nothrow pure
- {
- return int.sizeof;
- }
- override void swap(void *p1, void *p2)
- {
- int t;
- t = *cast(int *)p1;
- *cast(int *)p1 = *cast(int *)p2;
- *cast(int *)p2 = t;
- }
- }