mirror of
https://github.com/github/semantic.git
synced 2024-12-26 00:12:29 +03:00
SES returns Either
.
This commit is contained in:
parent
e742cf6859
commit
8b3c1aacfd
@ -2,8 +2,7 @@ module SES where
|
||||
|
||||
import Patch
|
||||
import Diff
|
||||
import Control.Monad.Free
|
||||
|
||||
ses :: Functor f => Eq a => [a] -> [a] -> [Free f (Patch a)]
|
||||
ses a b | Prelude.null a = (Pure . Insert) <$> b
|
||||
ses a b | Prelude.null b = (Pure . Delete) <$> a
|
||||
ses :: Eq a => [a] -> [a] -> [Either (Patch a) a]
|
||||
ses a b | Prelude.null a = (Left . Insert) <$> b
|
||||
ses a b | Prelude.null b = (Left . Delete) <$> a
|
||||
|
Loading…
Reference in New Issue
Block a user