1
1
mirror of https://github.com/github/semantic.git synced 2024-11-29 11:02:26 +03:00

Add an Unroll case to Cofree.

This commit is contained in:
Rob Rix 2015-10-14 09:42:21 -04:00
parent 59b60947f9
commit a83f77116d

View File

@ -1,5 +1,5 @@
// Copyright © 2015 GitHub. All rights reserved.
public enum Cofree {
public enum Cofree<B> {
case Unroll(B)
}