Module csw.Separator

Classes

class Separator
Expand source code
class Separator:
    Hyphen = "-"

    def hyphenate(*arg: str) -> str:
        return Separator.Hyphen.join(arg)

Class variables

var Hyphen

The type of the None singleton.

Methods

def hyphenate(*arg: str) ‑> str
Expand source code
def hyphenate(*arg: str) -> str:
    return Separator.Hyphen.join(arg)