acme-smuggler alternatives and similar packages
Based on the "ACME" category.
Alternatively, view acme-smuggler alternatives based on common mentions on social networks and blogs.
-
yes-precure5-command
Extended yes command to reproduce the phrases when the Japanese battle heroine PreCure transform. -
acme-cutegirl
A package which exists solely to try and give the user a cute girl. Executable and library are both available.
SaaSHub - Software Alternatives and Reviews
Do you think we are missing an alternative of acme-smuggler or a related project?
README
ACME Smuggler
The ()
type has only one value, also called ()
with no
internal structure.
Nevertheless, acme-smuggler allows you to smuggle
arbitrary values into ()
and discover them later.
And! Void
has no values at all, but acme-smuggler lets you
smuggle values into Void
. Or into any other Haskell type.
> x = smuggle "hello"
> :t x
x :: ()
> y = smuggle (7 :: Integer)
> :t y
y :: ()
> discover x :: Maybe String
Just "hello"
> discover y :: Maybe Integer
Just 7
> discover x :: Maybe Integer
Nothing
Here are slides for a short talk that I gave at the London Haskell User Group: http://www.hawaga.org.uk/ben/tech/london-hug-acme-smuggler/presentation.html and my original blog post: http://benctechnicalblog.blogspot.com/2016/11/smuggling-things-in-dirty-bottom.html