comparison lphobos/std/typeinfounsupported/ti_Areal.d @ 1:c53b6e3fe49a trunk

[svn r5] Initial commit. Most things are very rough.
author lindquist
date Sat, 01 Sep 2007 21:43:27 +0200
parents
children
comparison
equal deleted inserted replaced
0:a9e71648e74d 1:c53b6e3fe49a
1 /*
2 * Copyright (C) 2004-2006 by Digital Mars, www.digitalmars.com
3 * Written by Walter Bright
4 *
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.
8 *
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
12 * restrictions:
13 *
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
21 * distribution.
22 */
23
24 module std.typeinfo.ti_Areal;
25
26 private import std.typeinfo.ti_real;
27
28 // real[]
29
30 class TypeInfo_Ae : TypeInfo
31 {
32 char[] toString() { return "real[]"; }
33
34 hash_t getHash(void *p)
35 { real[] s = *cast(real[]*)p;
36 size_t len = s.length;
37 auto str = s.ptr;
38 hash_t hash = 0;
39
40 while (len)
41 {
42 hash *= 9;
43 hash += (cast(uint *)str)[0];
44 hash += (cast(uint *)str)[1];
45 hash += (cast(ushort *)str)[4];
46 str++;
47 len--;
48 }
49
50 return hash;
51 }
52
53 int equals(void *p1, void *p2)
54 {
55 real[] s1 = *cast(real[]*)p1;
56 real[] s2 = *cast(real[]*)p2;
57 size_t len = s1.length;
58
59 if (len != s2.length)
60 return 0;
61 for (size_t u = 0; u < len; u++)
62 {
63 int c = TypeInfo_e._equals(s1[u], s2[u]);
64 if (c == 0)
65 return 0;
66 }
67 return 1;
68 }
69
70 int compare(void *p1, void *p2)
71 {
72 real[] s1 = *cast(real[]*)p1;
73 real[] s2 = *cast(real[]*)p2;
74 size_t len = s1.length;
75
76 if (s2.length < len)
77 len = s2.length;
78 for (size_t u = 0; u < len; u++)
79 {
80 int c = TypeInfo_e._compare(s1[u], s2[u]);
81 if (c)
82 return c;
83 }
84 return cast(int)s1.length - cast(int)s2.length;
85 }
86
87 size_t tsize()
88 {
89 return (real[]).sizeof;
90 }
91
92 uint flags()
93 {
94 return 1;
95 }
96
97 TypeInfo next()
98 {
99 return typeid(real);
100 }
101 }
102
103 // ireal[]
104
105 class TypeInfo_Aj : TypeInfo_Ae
106 {
107 char[] toString() { return "ireal[]"; }
108
109 TypeInfo next()
110 {
111 return typeid(ireal);
112 }
113 }