docstring for gens function

This commit is contained in:
kalmar 2017-07-06 09:05:24 +02:00
parent 392214b697
commit 4b68fe745f
1 changed files with 5 additions and 0 deletions

View File

@ -135,6 +135,11 @@ doc"""
"""
reduce(W::GWord) = reduce!(deepcopy(W))
doc"""
gens(G::AbstractFPGroups)
> returns vector of generators of `G`, as its elements.
"""
gens(G::FPGroup) = [G(g) for g in G.gens]
###############################################################################