| Summary | Included libraries | Package variables | General documentation | Methods |
| feature2string | No description | Code |
| string2feature | No description | Code |
| feature2string | description | prev | next | Top |
my $feature = shift; local $^W = 0; my @a = @{$feature}{@hash2array_map}; push @a,map {join "\0",@$_} @{$feature->{attributes}} if $feature->{attributes}; return join $;,@a;}
| string2feature | description | prev | next | Top |
my $string = shift; my (@attributes,%feature); (@feature{@hash2array_map},@attributes) = split $;,$string; $feature{attributes} = [map {[split "\0",$_]} @attributes]; undef $feature{group_id};\% feature;}