java-bridge-0.20130606.3: Bindings to the JNI and a high level interface generator.

Portabilitynon-portable (UndecidableInstances, OverlappingInstances)
Stabilityprovisional
Maintainerjulian.fleischer@fu-berlin.de
Safe HaskellNone

Foreign.Java.IO

Description

Utilities to ease IO operations in the Java monad.

Documentation

class PrintLn a whereSource

Methods

println :: MonadIO m => a -> m ()Source

Like putStrLn . show, but with a specialized version for Strings plus it can be used within any MonadIO monad (such as IO and Java).

print :: MonadIO m => a -> m ()Source

Like putStr . show, but with a specialized version for Strings plus it can be used within any MonadIO monad (such as IO and Java).

Instances