Facebook
From Violet Mockingbird, 8 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 432
  1. thenA :: Auto a q1 -> Auto a q2 -> Auto a (Either q1 q2)
  2. thenA (A s11 ini11 ac11 t11) (A s12 ini12 ac12 t12) = (A st ini1 ac2 tr) where
  3.         (A s1 ini1 ac1 t1) = leftA (A s11 ini11 ac11 t11)
  4.         (A s2 ini2 ac2 t2) = rightA (A s12 ini12 ac12 t12)
  5.         st = s1 ++ s2
  6.         tr x ()
  7.                 | ac1 x         = ini2
  8.                 | otherwise = []

Replies to Untitled rss

Title Name Language When
Re: Untitled Gamboge Mousedeer haskell 8 Years ago.