Wiki

Changes between Initial Version and Version 1 of Nugget

Show
Ignore:
Timestamp:
12/09/10 03:09:42 (14 years ago)
Author:
todd.a
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Nugget

    v1 v1  
     1= Nugget = 
     2 
     3Nugget is a Cobra library that provides binary serialization for main primitive types like integers, floating point values, dates, strings, lists, and dictionaries. 
     4 
     5The main advantage over the serialization libraries found in System.Runtime is that Nugget's encoded objects are only a fraction of the serialization libraries. The encoding is also designed to be simple, comparable to that of JSON. 
     6 
     7== Example == 
     8{{{ 
     9#!cobra 
     10class Program 
     11    def main 
     12        list = ['foo', 'bar'] 
     13        bytes = Nugget.encode(list) 
     14}}} 
     15 
     16== Download == 
     17Find the source for Nugget attached below. 
     18 
     19'''SHA1 Checksum''' 
     20{{{ 
     21f0ca5e524b8daabecf282fdf078e89458ffabfdb 
     22}}}