From: Francois Berenger <berenger@riken.jp>
To: caml-list@inria.fr
Subject: [Caml-list] What is the fastest? Pattern matching or if then else
Date: Fri, 07 Dec 2012 11:33:52 +0900 [thread overview]
Message-ID: <50C15590.1010507@riken.jp> (raw)
Hello,
I always wondered what is the fastest (at least for integers):
match n with
0 -> (* do something *)
| _ -> (* do something else *)
or
if n = 0 then
(* do something *)
else
(* do something else *)
Sometimes I have some code that would be more beautiful
if I was using only pattern matching rather than
pattern matching interspersed with if then else directives.
Is one significantly faster than the other?
Is it the same cost at runtime?
Thanks a lot,
F.
next reply other threads:[~2012-12-07 2:33 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-12-07 2:33 Francois Berenger [this message]
2012-12-07 2:45 ` Jacques Garrigue
2012-12-07 9:28 ` Christos KK Loverdos
[not found] ` <20121207.090650.972729327013546587.Christophe.Troestler@umons.ac.be>
2012-12-10 0:06 ` Francois Berenger
[not found] ` <20121210.012739.1808775350475077852.Christophe.Troestler@umons.ac.be>
2012-12-10 0:44 ` Francois Berenger
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=50C15590.1010507@riken.jp \
--to=berenger@riken.jp \
--cc=caml-list@inria.fr \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox