Bases: sage.categories.map.Map
This morphism simply calls the codomain’s element_constructor method, passing in the codomain as the first argument.
Bases: sage.structure.coerce_maps.DefaultConvertMap
This morphism simply defers action to the codomain’s element_constructor method, WITHOUT passing in the codomain as the first argument.
This is used for creating elements that don’t take a parent as the first argument to their __init__ method, for example, Integers, Rationals, Algebraic Reals... all have a unique parent. It is also used when the element_constructor is a bound method (whose self argument is assumed to be bound to the codomain).
Bases: sage.categories.map.Map
This is used for creating a elements via the _xxx_ methods.
For example, many elements implement an _integer_ method to convert to ZZ, or a _rational_ method to convert to QQ.
For testing CCallableConvertMap_class.
TESTS:
sage: from sage.structure.coerce_maps import test_CCallableConvertMap
sage: f = test_CCallableConvertMap(ZZ, 'test'); f
Conversion via c call 'test' map:
From: Integer Ring
To: Integer Ring
sage: f(3)
24
sage: f(9)
720