2 * Copyright (C) 2004-2005 by Digital Mars, www.digitalmars.com
3 * Written by Walter Bright
5 * This software is provided 'as-is', without any express or implied
6 * warranty. In no event will the authors be held liable for any damages
7 * arising from the use of this software.
9 * Permission is granted to anyone to use this software for any purpose,
10 * including commercial applications, and to alter it and redistribute it
11 * freely, in both source and binary form, subject to the following
14 * o The origin of this software must not be misrepresented; you must not
15 * claim that you wrote the original software. If you use this software
16 * in a product, an acknowledgment in the product documentation would be
17 * appreciated but is not required.
18 * o Altered source versions must be plainly marked as such, and must not
19 * be misrepresented as being the original software.
20 * o This notice may not be removed or altered from any source
24 module rt.typeinfo.ti_Acdouble;
26 private import typeinfo.ti_cdouble;
30 class TypeInfo_Ar : TypeInfo
32 string toString() { return "cdouble[]"; }
34 hash_t getHash(in void* p)
35 { cdouble[] s = *cast(cdouble[]*)p;
36 size_t len = s.length;
43 hash += (cast(uint *)str)[0];
44 hash += (cast(uint *)str)[1];
45 hash += (cast(uint *)str)[2];
46 hash += (cast(uint *)str)[3];
54 equals_t equals(in void* p1, in void* p2)
56 cdouble[] s1 = *cast(cdouble[]*)p1;
57 cdouble[] s2 = *cast(cdouble[]*)p2;
58 size_t len = s1.length;
62 for (size_t u = 0; u < len; u++)
64 int c = TypeInfo_r._equals(s1[u], s2[u]);
71 int compare(in void* p1, in void* p2)
73 cdouble[] s1 = *cast(cdouble[]*)p1;
74 cdouble[] s2 = *cast(cdouble[]*)p2;
75 size_t len = s1.length;
79 for (size_t u = 0; u < len; u++)
81 int c = TypeInfo_r._compare(s1[u], s2[u]);
85 if (s1.length < s2.length)
87 else if (s1.length > s2.length)
94 return (cdouble[]).sizeof;
104 return typeid(cdouble);