1 Feb
2005
1 Feb
'05
6:38 p.m.
Hi,
I have defined the following:
bigint* bigint_constructor(long_ l){
return new bigint(to_bigint(l));
}
class_<bigint>("bigint")
.def("__init__", make_constructor(bigint_constructor))
....
....
implicitly_convertible