[
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: | Alain Frisch <alain@f...> |
| Subject: | Re: [Caml-list] Some obsolete constructions ? |
On 04/30/2010 03:23 PM, Emmanuel Dieul wrote:
> - Pcf_let : a let construction as a class field ?
AFAIK, this one is obsolete.
> - Pexp_letmodule : ?
let module L = List in ();;
> - Pexp_override : an override expression ?
object(this) method m = {< >} end;;
> - Ppat_type : a type pattern matching ?
type t = [`A];;
fun #t -> ();;
> - Rinherit : an inherit row field ?
type t = [`A];;
type s = [t | `B];;
-- Alain