From: Issac Trotts <ijtrotts@nez-perce.inria.fr>
To: caml-list@inria.fr
Subject: Re: [Caml-list] int -> byte array (and back)
Date: Wed, 19 Nov 2003 14:40:46 -0800 [thread overview]
Message-ID: <20031119224046.GB944@localhost> (raw)
In-Reply-To: <57648B84-1ACF-11D8-A4B7-000393CFE6B8@spy.net>
On Wed, Nov 19, 2003 at 12:31:23PM -0800, Dustin Sallings wrote:
>
> I need to be able to get a byte array (specifically in little-endian
> format) from an int. I'll need the reverse as well. Is there anything
> that does that in the distribution, or do I need to calculate it
> myself? Just trying to do things the right way.
Here's a way to do it:
# open Bigarray;;
# #load "bigarray.cma";;
# let i=Random.int 1024;;
val i : int = 735
# let a_of_i i =
let a=Array1.create int8_unsigned c_layout 4 in
a.{0} <- i land 0xff;
a.{1} <- (i lsr 8) land 0xff;
a.{2} <- (i lsr 16) land 0xff;
a.{3} <- (i lsr 24) land 0xff;
a;;
val a_of_i :
int ->
(int, Bigarray.int8_unsigned_elt, Bigarray.c_layout) Bigarray.Array1.t =
<fun>
# let i_of_a a =
a.{0} lor (a.{1} lsl 8) lor (a.{2} lsl 16) lor (a.{3} lsl 24);;
val i_of_a : (int, 'a, 'b) Bigarray.Array1.t -> int = <fun>
# let a = a_of_i i;;
val a :
(int, Bigarray.int8_unsigned_elt, Bigarray.c_layout) Bigarray.Array1.t =
<abstr>
# a.{0},a.{1},a.{2},a.{3};;
- : int * int * int * int = (223, 2, 0, 0)
# i_of_a a;;
- : int = 735
--
Issac Trotts
Programmer
Center for Neuroscience
University of California, Davis
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
next prev parent reply other threads:[~2003-11-19 22:40 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-11-19 20:31 Dustin Sallings
2003-11-19 22:40 ` Issac Trotts [this message]
2003-11-20 5:05 ` skaller
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=20031119224046.GB944@localhost \
--to=ijtrotts@nez-perce.inria.fr \
--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