view runtime/internal/typeinfo/ti_byte.d @ 903:493d42562733

Further Solaris data segment detection fixes. Thanks BlueZeniX!
author Christian Kamm <kamm incasoftware de>
date Fri, 23 Jan 2009 10:13:27 +0100
parents 44f08170f4ef
children
line wrap: on
line source


// byte

module typeinfo.ti_byte;

class TypeInfo_g : TypeInfo
{
    char[] toString() { return "byte"; }

    hash_t getHash(void *p)
    {
	return *cast(byte *)p;
    }

    int equals(void *p1, void *p2)
    {
	return *cast(byte *)p1 == *cast(byte *)p2;
    }

    int compare(void *p1, void *p2)
    {
	return *cast(byte *)p1 - *cast(byte *)p2;
    }

    size_t tsize()
    {
	return byte.sizeof;
    }

    void swap(void *p1, void *p2)
    {
	byte t;

	t = *cast(byte *)p1;
	*cast(byte *)p1 = *cast(byte *)p2;
	*cast(byte *)p2 = t;
    }
}