scyther-proof-0.3.0: Automatic generation of Isabelle/HOL correctness proofs for security protocols.

System.Timing

Description

A simple module for timing IO action.

Synopsis

Documentation

timed :: IO a -> IO (a, NominalDiffTime)Source

Execute an IO action and return its result plus the time it took to execute it.

timed_ :: IO a -> IO NominalDiffTimeSource

Execute an IO action and return the time it took to execute it.