1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
LibVee
Utilities for numbers and Objects.
The files in this directory are Public Domain.
fast_number.vala:
Use decimal point values without having to do floating point
maths. It uses normal Integer (long) values to store all the
information about the numbers, and thus skips the advanced maths
needed for Floating point values. Useful for divices without an
FPU or where the FPU is slow.
utils.vala:
Collection of useful functions.
gobject_to_string ():
Just creates a string of all the properties in a gobject.
str_cmp ():
comprae two string (static function).
print_ln ():
print on a new line.
exeptions.vala:
Useful exeption types.
|