]>
Commit | Line | Data |
---|---|---|
1 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
2 | %% Name: longlong.tex | |
3 | %% Purpose: wxLongLong documentation | |
4 | %% Author: Vadim Zeitlin | |
5 | %% Modified by: | |
6 | %% Created: 07.03.00 | |
7 | %% RCS-ID: $Id$ | |
8 | %% Copyright: (c) Vadim Zeitlin | |
9 | %% License: wxWindows license | |
10 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
11 | ||
12 | \section{\class{wxLongLong}}\label{wxlonglong} | |
13 | ||
14 | This class represents a signed 64 bit long number. It is implemented using the | |
15 | native 64 bit type where available (machines with 64 bit longs or compilers | |
16 | which have (an analog of) {\it long long} type) and uses the emulation code in | |
17 | the other cases which ensures that it is the most efficient solution for | |
18 | working with 64 bit integers independently of the architecture. | |
19 | ||
20 | wxLongLong defines all usual arithmetic operations such as addition, | |
21 | subtraction, bitwise shifts and logical operations as well as multiplication | |
22 | and division (not yet for the machines without native {\it long long}). It | |
23 | also has operators for implicit construction from and conversion to the native | |
24 | {\it long long} type if it exists and {\it long}. | |
25 | ||
26 | You would usually use this type in exactly the same manner as any other | |
27 | (built-in) arithmetic type. Note that wxLongLong is a signed type, if you | |
28 | want unsigned values use wxULongLong which has exactly the same API as | |
29 | wxLongLong except when explicitly mentioned otherwise. | |
30 | ||
31 | If a native (i.e. supported directly by the compiler) 64 bit integer type was | |
32 | found to exist, {\it wxLongLong\_t} macro will be defined to correspond to it. | |
33 | Also, in this case only, two additional macros will be defined: | |
34 | \helpref{wxLongLongFmtSpec}{wxlonglongfmtspec} for printing 64 bit integers | |
35 | using the standard {\tt printf()} function (but see also | |
36 | \helpref{ToString()}{wxlonglongtostring} for a more portable solution) and | |
37 | \helpref{wxLL}{wxll} for defining 64 bit integer compile-time constants. | |
38 | ||
39 | \wxheading{Derived from} | |
40 | ||
41 | No base class | |
42 | ||
43 | \wxheading{Include files} | |
44 | ||
45 | <wx/longlong.h> | |
46 | ||
47 | \latexignore{\rtfignore{\wxheading{Members}}} | |
48 | ||
49 | ||
50 | \membersection{wxLongLong::wxLongLong}\label{wxlonglongwxlonglongdef} | |
51 | ||
52 | \func{}{wxLongLong}{\void} | |
53 | ||
54 | Default constructor initializes the object to 0. | |
55 | ||
56 | ||
57 | \membersection{wxLongLong::wxLongLong}\label{wxlonglongwxlonglongll} | |
58 | ||
59 | \func{}{wxLongLong}{\param{wxLongLong\_t }{ll}} | |
60 | ||
61 | Constructor from native long long (only for compilers supporting it). | |
62 | ||
63 | ||
64 | \membersection{wxLongLong::wxLongLong}\label{wxlonglongwxlonglong} | |
65 | ||
66 | \func{}{wxLongLong}{\param{long }{hi}, \param{unsigned long }{lo}} | |
67 | ||
68 | Constructor from 2 longs: the high and low part are combined into one | |
69 | wxLongLong. | |
70 | ||
71 | ||
72 | \membersection{wxLongLong::operator=}\label{wxlonglongoperatorassign} | |
73 | ||
74 | \func{wxLongLong\& operator}{operator=}{\param{wxLongLong\_t }{ll}} | |
75 | ||
76 | Assignment operator from native long long (only for compilers supporting it). | |
77 | ||
78 | ||
79 | \membersection{wxLongLong::operator=}\label{wxlonglongoperatorassignull} | |
80 | ||
81 | \func{wxLongLong\& operator}{operator=}{\param{wxULongLong\_t }{ll}} | |
82 | ||
83 | Assignment operator from native unsigned long long (only for compilers | |
84 | supporting it). | |
85 | ||
86 | \newsince{2.7.0} | |
87 | ||
88 | \membersection{wxLongLong::operator=}\label{wxlonglongoperatorassignlong} | |
89 | ||
90 | \func{wxLongLong\& operator}{operator=}{\param{long }{l}} | |
91 | ||
92 | Assignment operator from long. | |
93 | ||
94 | \newsince{2.7.0} | |
95 | ||
96 | \membersection{wxLongLong::operator=}\label{wxlonglongoperatorassignulong} | |
97 | ||
98 | \func{wxLongLong\& operator}{operator=}{\param{unsigned long }{l}} | |
99 | ||
100 | Assignment operator from unsigned long. | |
101 | ||
102 | \newsince{2.7.0} | |
103 | ||
104 | \membersection{wxLongLong::operator=}\label{wxlonglongoperatorassignulonglong} | |
105 | ||
106 | \func{wxLongLong\& operator}{operator=}{\param{const wxULongLong \& }{ll}} | |
107 | ||
108 | Assignment operator from unsigned long long. The sign bit will be copied too. | |
109 | ||
110 | \newsince{2.7.0} | |
111 | ||
112 | \membersection{wxLongLong::Abs}\label{wxlonglongabs} | |
113 | ||
114 | \constfunc{wxLongLong}{Abs}{\void} | |
115 | ||
116 | \func{wxLongLong\&}{Abs}{\void} | |
117 | ||
118 | Returns an absolute value of wxLongLong - either making a copy (const version) | |
119 | or modifying it in place (the second one). Not in wxULongLong. | |
120 | ||
121 | ||
122 | \membersection{wxLongLong::Assign}\label{wxlonglongassign} | |
123 | ||
124 | \func{wxLongLong\&}{Assign}{\param{double }{d}} | |
125 | ||
126 | This allows to convert a double value to wxLongLong type. Such conversion is | |
127 | not always possible in which case the result will be silently truncated in a | |
128 | platform-dependent way. Not in wxULongLong. | |
129 | ||
130 | ||
131 | \membersection{wxLongLong::GetHi}\label{wxlonglonggethi} | |
132 | ||
133 | \constfunc{long}{GetHi}{\void} | |
134 | ||
135 | Returns the high 32 bits of 64 bit integer. | |
136 | ||
137 | ||
138 | \membersection{wxLongLong::GetLo}\label{wxlonglonggetlo} | |
139 | ||
140 | \constfunc{unsigned long}{GetLo}{\void} | |
141 | ||
142 | Returns the low 32 bits of 64 bit integer. | |
143 | ||
144 | ||
145 | \membersection{wxLongLong::GetValue}\label{wxlonglonggetvalue} | |
146 | ||
147 | \constfunc{wxLongLong\_t}{GetValue}{\void} | |
148 | ||
149 | Convert to native long long (only for compilers supporting it) | |
150 | ||
151 | ||
152 | \membersection{wxLongLong::ToDouble}\label{wxlonglonggetdouble} | |
153 | ||
154 | \constfunc{double}{ToDouble}{\void} | |
155 | ||
156 | Returns the value as \texttt{double}. | |
157 | ||
158 | ||
159 | \membersection{wxLongLong::ToLong}\label{wxlonglongtolong} | |
160 | ||
161 | \constfunc{long}{ToLong}{\void} | |
162 | ||
163 | Truncate wxLongLong to long. If the conversion loses data (i.e. the wxLongLong | |
164 | value is outside the range of built-in long type), an assert will be triggered | |
165 | in debug mode. | |
166 | ||
167 | ||
168 | \membersection{wxLongLong::ToString}\label{wxlonglongtostring} | |
169 | ||
170 | \constfunc{wxString}{ToString}{\void} | |
171 | ||
172 | Returns the string representation of a wxLongLong. | |
173 | ||
174 | ||
175 | \membersection{wxLongLong::operator$+$}\label{wxlonglongoperatorplus} | |
176 | ||
177 | \constfunc{wxLongLong}{operator$+$}{\param{const wxLongLong\& }{ll}} | |
178 | ||
179 | Adds 2 wxLongLongs together and returns the result. | |
180 | ||
181 | ||
182 | \membersection{wxLongLong::operator$+=$}\label{wxlonglongoperatorplusassign} | |
183 | ||
184 | \func{wxLongLong\&}{operator+}{\param{const wxLongLong\& }{ll}} | |
185 | ||
186 | Add another wxLongLong to this one. | |
187 | ||
188 | ||
189 | \membersection{wxLongLong::operator$++$}\label{wxlonglongoperatorinc} | |
190 | ||
191 | \func{wxLongLong\&}{operator$++$}{\void} | |
192 | ||
193 | \func{wxLongLong\&}{operator$++$}{\param{int}{}} | |
194 | ||
195 | Pre/post increment operator. | |
196 | ||
197 | ||
198 | \membersection{wxLongLong::operator$-$}\label{wxlonglongoperatorunaryminus} | |
199 | ||
200 | \constfunc{wxLongLong}{operator$-$}{\void} | |
201 | ||
202 | Returns the value of this wxLongLong with opposite sign. Not in wxULongLong. | |
203 | ||
204 | ||
205 | \membersection{wxLongLong::operator$-$}\label{wxlonglongoperatorminus} | |
206 | ||
207 | \constfunc{wxLongLong}{operator$-$}{\param{const wxLongLong\& }{ll}} | |
208 | ||
209 | Subtracts 2 wxLongLongs and returns the result. | |
210 | ||
211 | ||
212 | \membersection{wxLongLong::operator$-=$}\label{wxlonglongoperatorminusassign} | |
213 | ||
214 | \func{wxLongLong\&}{operator-}{\param{const wxLongLong\& }{ll}} | |
215 | ||
216 | Subtracts another wxLongLong from this one. | |
217 | ||
218 | ||
219 | \membersection{wxLongLong::operator$--$}\label{wxlonglongoperatordec} | |
220 | ||
221 | \func{wxLongLong\&}{operator$--$}{\void} | |
222 | ||
223 | \func{wxLongLong\&}{operator$--$}{\param{int}{}} | |
224 | ||
225 | Pre/post decrement operator. | |
226 | ||
227 | % TODO document all other arithmetics operations: shifts, multiplication, | |
228 | % division, bitwise, comparison | |
229 |