> break (> 3) (fromList [1,2,3,4,1,2,3,4] :: Vector Int) (fromList [1,2,3],fromList [4,1,2,3,4]) > break (< z) (fromList "abc" :: Text) ("","abc") > break (> z) (fromList "abc" :: Text) ("abc","")
> breakLine "abc\ndef" ("abc","def")
> breakWord "hello world" ("hello","world")