Search Results

Search found 2 results on 1 pages for 'dimvar'.

Page 1/1 | 1 

  • SML/NJ incomplete match

    - by dimvar
    I wonder how people handle nonexhaustive match warnings in the SML/NJ compiler. For example, I may define a datatype datatype DT = FOO of int | BAR of string and then have a function that I know only takes FOOs fun baz (FOO n) = n + 1 The compiler will give a warning stdIn:1.5-1.24 Warning: match nonexhaustive FOO n = ... val baz = fn : DT - int I don't wanna see warnings for incomplete matches I did on purpose, because then I have to scan through the output to find a warning that might actually be a bug. I can write the function like this fun baz (FOO n) = n + 1 | baz _ = raise Fail "baz" but this clutters the code. What do people usually do in this situation?

    Read the article

  • Command key to Meta in Emacs

    - by dimvar
    I'm using a Mac keyboard on Ubuntu at work. What do I add to my .emacs file to turn the command key to Meta? I tried (setq mac-command-key-is-meta t) and (setq mac-command-key 'meta) and neither works.

    Read the article

1