Function fields#

class sage.categories.function_fields.FunctionFields[source]#

Bases: Category

The category of function fields.

EXAMPLES:

We create the category of function fields:

sage: C = FunctionFields()
sage: C
Category of function fields
>>> from sage.all import *
>>> C = FunctionFields()
>>> C
Category of function fields
class ElementMethods[source]#

Bases: object

class ParentMethods[source]#

Bases: object

super_categories()[source]#

Returns the Category of which this is a direct sub-Category For a list off all super categories see all_super_categories

EXAMPLES:

sage: FunctionFields().super_categories()
[Category of fields]
>>> from sage.all import *
>>> FunctionFields().super_categories()
[Category of fields]