cli-utils-4.1.0
LicenseBSD3
Maintainertbidne@gmail.com
Safe HaskellSafe
LanguageHaskell2010

Git.Types.GitTypes

Description

Provides types to describe data returned by the Git actions

Synopsis

Documentation

newtype Name Source #

Branch Name.

Constructors

Name Text 

Instances

Instances details
Eq Name Source # 
Instance details

Defined in Git.Types.GitTypes

Methods

(==) :: Name -> Name -> Bool #

(/=) :: Name -> Name -> Bool #

Ord Name Source # 
Instance details

Defined in Git.Types.GitTypes

Methods

compare :: Name -> Name -> Ordering #

(<) :: Name -> Name -> Bool #

(<=) :: Name -> Name -> Bool #

(>) :: Name -> Name -> Bool #

(>=) :: Name -> Name -> Bool #

max :: Name -> Name -> Name #

min :: Name -> Name -> Name #

Show Name Source # 
Instance details

Defined in Git.Types.GitTypes

Methods

showsPrec :: Int -> Name -> ShowS #

show :: Name -> String #

showList :: [Name] -> ShowS #

newtype Author Source #

Branch Author.

Constructors

Author Text 

Instances

Instances details
Eq Author Source # 
Instance details

Defined in Git.Types.GitTypes

Methods

(==) :: Author -> Author -> Bool #

(/=) :: Author -> Author -> Bool #

Ord Author Source # 
Instance details

Defined in Git.Types.GitTypes

Show Author Source # 
Instance details

Defined in Git.Types.GitTypes

type NameLog = (Name, Text) Source #

Intermediate tuple for (Name, log info).

type NameAuthDateStr = (Name, Author, Text) Source #

Intermediate tuple for (Name, Author, date string)

type NameAuthDay = (Name, Author, Day) Source #

Intermediate tuple for (Name, Author, Day)