| License | BSD3 |
|---|---|
| Maintainer | tbidne@gmail.com |
| Safe Haskell | Safe |
| Language | Haskell2010 |
Git.FastForward.Types.UpdateResult
Description
Provides functions and types for descrbing the result of an update attempt.
Synopsis
- data SplitResults = SplitResults {}
- data UpdateResult
- splitResults :: [UpdateResult] -> SplitResults
Documentation
data SplitResults Source #
Groups the String Name of all results by UpdateResult.
Instances
| Show SplitResults Source # | |
Defined in Git.FastForward.Types.UpdateResult Methods showsPrec :: Int -> SplitResults -> ShowS # show :: SplitResults -> String # showList :: [SplitResults] -> ShowS # | |
data UpdateResult Source #
Describes the result of an attempt to update a branch.
Constructors
| Failure Name | Indicates updating |
| NoChange Name | Indicates updating |
| Success Name | Indicates updating |
Instances
| Show UpdateResult Source # | |
Defined in Git.FastForward.Types.UpdateResult Methods showsPrec :: Int -> UpdateResult -> ShowS # show :: UpdateResult -> String # showList :: [UpdateResult] -> ShowS # | |
splitResults :: [UpdateResult] -> SplitResults Source #
Maps [UpdateResult] to intermediate SplitResults.