ZVON > References > Haskell reference
| Indexes | Syntax | Prelude | Ratio | Complex | Numeric | Ix | Array | List | Maybe | Char | Monad | >> IO << | Directory | System | Time | Locale | CPUTime | Random

Module: IO
Function: hLookAhead
Type: Handle -> IO Char
Description: hLookAhead hdl returns the next character from handle hdl without removing it from the input buffer, blocking until a character is available
Related:

Example 1
File: /tmp/foo.txt : 

Hello, world!
How do you do?
Program source: 

import IO

main = do x <- openFile "/tmp/foo.txt" ReadMode
	  y <- hLookAhead x
          putChar y
          y <- hLookAhead x
          putChar y
          y <- hGetChar x
          putChar y
          y <- hLookAhead x
          putChar y

Output: HHHe