1
1
mirror of https://github.com/github/semantic.git synced 2024-12-26 16:33:03 +03:00

Substrings.

This commit is contained in:
Rob Rix 2015-11-19 15:05:33 -08:00
parent 222aba8e46
commit 4103cfb1e2

View File

@ -16,3 +16,6 @@ unified diff before after =
f (Annotated annotations (Keyed k)) = ""
unifiedPatch :: Patch (Term a annotation) -> String
unifiedPatch _ = ""
substring :: Range -> String -> String
substring range = take (end range) . drop (start range)