each()
public
Calls block once for each element in
self, passing that element as parameter asn1. If no block
is given, an enumerator is returned instead.
Example
asn1_ary.each do |asn1|
puts asn1
end
static VALUE
ossl_asn1cons_each(VALUE self)
{
rb_block_call(ossl_asn1_get_value(self), id_each, 0, 0, 0, 0);
return self;
}