-
-
vitunes
... Notable Globals
-------------------------------
vitunes maintains a few key global objects (structs) that are used
throughout much of the code ... any of the .h files.
These include global structs in:
meta_info.c For maintaining the current display ...
-
libtvdb
... from TVDB.com. You can either use your own XML parser or you can use libtvdb functions that parse the XML into libtvdb data structs (e.g., linked list, buffer, etc.).
There are still API functions that need to be added. And, in the future, I hope to ...
-
gobuzz
... all the Date / Time
properties have tobe precessed after the fact.
Example
-------
An example of the use of these structs is show in the
GoAuth project.
Found here :
https://github.com/hokapoka/goauth/blob/master/example_buzz/example2.go
...
-
lua-xcb
... between Lua and C parameters are as follows:
* All enumeration and integer types, including XIDs, are passed as Lua
numbers.
* Structs are passed as Lua tables, with keys of the same names as the C
structures. Superfluous keys will be ignored. ...
-
grid-benchmark.js
... required for determining the 2d -> 1d index mapping.
* Some I had no idea how they would compare. The hash-based structs almost compete with `grid_array_2d`, and might actually be better for sparse grids.
* Some I was hoping would yield surprising results ...
-
construct
... an easy-to-extend subclass system, and lots of primitive
constructs to make your work easier:
* Fields
* Structs
* Unions
* Repeaters
* Meta constructs
* Switches
* On-demand parsing
* Pointers
* And more!
Requirements
============
Construct ...
-
userial
... in the above example).
For items in classes or structs, one can serialize and unserialize
them using slots or ... example above.
To facilitate serializing and deserializing classes and structs,
the USerial library provides macros which create serializers ...
-
coil
... y: {
@extends: ..x
a.b: 3
}
z: {
@extends: ..x
a: {
@extends: ..x.a
b: 3
}
}
Structs can also be used to import files, either given a path on the
filesystem, which can be absolute or ...
-
OldSource
... actions might be handled by the same logic class. A
special attribute added to each element in the structs-config file identifies the appropriate Delegate.
The Action classes are responsible for forwarding action requests. A nice side effect ...
-
fit
... of input types: int64, uint64,
[]byte, nil, and []interface{}. It should be expanded to handle any type.
It fits slices into structs by recursively fitting each element of the slice
to each field in the struct.
Fit returns an os.Error if it cannot get ...
-