Erwin Data Structures 2.1.88591 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Erwin Data Structures 2.1.88591 (Default branch)
# 1  
Old 08-28-2008
Erwin Data Structures 2.1.88591 (Default branch)

ImageThe Erwin library is a very efficient and robust data structure templatelibrary for C and C++. No templates are used; a Perl script generatesC files. Vectors (dynamic arrays), lists, and hash tables (maps) ofarbitrary key and value types are provided. Several tools are includedfor auto-generating a C interface around C++ libraries, C++ extensionslike slots/properties, symbol (=hashed string) management, sophisticatedassertion macros, and documentation extraction.License: Freely DistributableChanges:
Integer overflows leading to unexpected orderingswere fixed from many comparison functions. CMakesupport was added. Two more bit operations fromHacker's Delight were added.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. Programming

Signalsafe data structures

Hello, I have a signal handler which manipulates a data structure. The data structure's operations aren't atomic. So if two threads/processes are in a critical section at the same time the data structure will be broken. With threads you can avoid this stuff with semaphores etc. However,... (10 Replies)
Discussion started by: littlegnome
10 Replies

2. Shell Programming and Scripting

Perl Data Structures

Here is what i need to do. @data #has all column wise data so say info for col 1 location for all rows would be in this array $array = \@data But i need to create a file which should contain these information in a format for all columns even if i have got no values from some of the index... (0 Replies)
Discussion started by: dinjo_jo
0 Replies

3. Programming

shared memory - userdefined data structures

Hello, I wonder if I can write my userdefined data structures(ex: a list) to a shared memory segment? I know, the shm functions get (void*) parameter so I should be able to read and write a list into the shared memory. may someone inform and clarify me about that, please? (1 Reply)
Discussion started by: xyzt
1 Replies
Login or Register to Ask a Question
GraphViz::Data::Grapher(3pm)				User Contributed Perl Documentation			      GraphViz::Data::Grapher(3pm)

NAME
GraphViz::Data::Grapher - Visualise data structures as a graph SYNOPSIS
use GraphViz::Data::Grapher; my $graph = GraphViz::Data::Grapher->new($structure); print $graph->as_png; DESCRIPTION
This module makes it easy to visualise Perl data structures. Data structures can grow quite large and it can be hard to understand the quite how the structure fits together. Data::Dumper can help by representing the structure as a text heirarchy, but GraphViz::Data::Grapher goes a step further and visualises the structure by drawing a graph which represents the data structure. Arrays are represented by records. Scalars are represented by themselves. Array references are represented by a '@' symbol, which is linked to the array. Hash references are represented by a '%' symbol, which is linked to an array of keys, which each link to their value. Object references are represented by 'Object', which then links to the type of the object. Undef is represented by 'undef'. METHODS
new This is the constructor. It takes a list, which is the data structure to be visualised. A GraphViz object is returned. my $graph = GraphViz::Data::Grapher->new([3, 4, 5], "Hello"); as_* The data structure can be visualised in a number of different graphical formats. Methods include as_ps, as_hpgl, as_pcl, as_mif, as_pic, as_gd, as_gd2, as_gif, as_jpeg, as_png, as_wbmp, as_ismap, as_imap, as_vrml, as_vtx, as_mp, as_fig, as_svg. See the GraphViz documentation for more information. The two most common methods are: # Print out a PNG-format file print $graph->as_png; # Print out a PostScript-format file print $graph->as_ps; AUTHOR
Leon Brocard <acme@astray.com> COPYRIGHT
Copyright (C) 2000-1, Leon Brocard This module is free software; you can redistribute it or modify it under the same terms as Perl itself. perl v5.14.2 2012-04-02 GraphViz::Data::Grapher(3pm)