Skip to content

Instantly share code, notes, and snippets.

@JorgeCastilloPrz
Created July 30, 2018 18:12
Show Gist options
  • Save JorgeCastilloPrz/2f0e259b65110230c85a51068d2722a5 to your computer and use it in GitHub Desktop.
Save JorgeCastilloPrz/2f0e259b65110230c85a51068d2722a5 to your computer and use it in GitHub Desktop.
allTasksByUser.kt
override fun allTasksByUser(user: User): Kind<F, List<Task>> =
Option.fromNullable(localCache[user]).fold(
{ raiseError(UserNotInLocalStorage(user)) },
{ just(it) }
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment