Browse thread
Re: bitwise not
- Xavier Leroy
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
| Date: | -- (:) |
| From: | Xavier Leroy <xleroy@p...> |
| Subject: | Re: bitwise not |
Well, the bitwise not seems to have been left out of the library, but it's a one-liner: let lnot x = x lxor (-1);; - Xavier