From: Mark H Weaver <mhw@netris.org>
To: ludo@gnu.org (Ludovic Courtès)
Cc: Andy Wingo <wingo@pobox.com>, Guile Users <guile-user@gnu.org>
Subject: Re: Accessing multiple values from C
Date: Wed, 18 Jan 2012 16:47:21 -0500 [thread overview]
Message-ID: <87obu0y97a.fsf@netris.org> (raw)
In-Reply-To: <87sjjcybc6.fsf@netris.org> (Mark H. Weaver's message of "Wed, 18 Jan 2012 16:01:13 -0500")
I think something along these lines be ideal,
though this code is UNTESTED.
Mark
SCM
scm_c_value_ref (SCM obj, size_t idx)
{
if (SCM_VALUESP (obj))
{
SCM values = scm_struct_ref (obj, SCM_INUM0);
size_t i = idx;
while (SCM_LIKELY (!scm_is_null (values)))
{
if (i == 0)
return SCM_CAR (values);
values = SCM_CDR (values);
i--;
}
}
else if (idx == 0)
return obj;
scm_error (scm_out_of_range_key,
"scm_c_value_ref",
"Too few values in ~S to access index ~S",
scm_list_2 (obj, scm_from_unsigned_integer (idx)),
scm_list_1 (scm_from_unsigned_integer (idx)));
}
next prev parent reply other threads:[~2012-01-18 21:47 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-11-01 15:34 Accessing multiple values from C Julian Graham
2011-11-01 22:57 ` Ludovic Courtès
2012-01-09 18:54 ` Andy Wingo
2012-01-09 19:00 ` Julian Graham
2012-01-12 4:50 ` Julian Graham
2012-01-15 21:47 ` Ludovic Courtès
2012-01-16 9:05 ` Andy Wingo
2012-01-18 3:15 ` Mark H Weaver
2012-01-18 16:20 ` Andy Wingo
2012-01-18 20:19 ` Ludovic Courtès
2012-01-18 21:01 ` Mark H Weaver
2012-01-18 21:44 ` Ludovic Courtès
2012-01-18 21:47 ` Mark H Weaver [this message]
2012-01-18 23:06 ` Mark H Weaver
2012-01-18 21:01 ` Julian Graham
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
List information: https://www.gnu.org/software/guile/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87obu0y97a.fsf@netris.org \
--to=mhw@netris.org \
--cc=guile-user@gnu.org \
--cc=ludo@gnu.org \
--cc=wingo@pobox.com \
/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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).