/vqdr/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/vqdr/trunk

« back to all changes in this revision

Viewing changes to src/utils/README

  • Committer: Gustav Hartvigsson
  • Date: 2021-11-15 16:29:17 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20211115162917-yqz4q9epewtpe4p5
Sort of fixed object_to_string ()...
still needs figue out how to do the recurtion propperly.

Show diffs side-by-side

added added

removed removed

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