~ubuntu-branches/ubuntu/trusty/picolisp/trusty-proposed

« back to all changes in this revision

Viewing changes to doc/refU.html

  • Committer: Package Import Robot
  • Author(s): Kan-Ru Chen (陳侃如)
  • Date: 2013-03-06 00:21:35 UTC
  • mfrom: (1.1.23)
  • Revision ID: package-import@ubuntu.com-20130306002135-oipgfog1yy4wcpnn
Tags: 3.1.1.15-1
* New upstream release.
* Sync to upstream tip.

Show diffs side-by-side

added added

removed removed

Lines of Context:
405
405
-> 12
406
406
</code></pre>
407
407
 
408
 
<dt><a name="usec"><code>(usec) -> num</code></a>
409
 
<dd>Returns the number the microseconds since interpreter startup. See also
410
 
<code><a href="refT.html#time">time</a></code> and <code><a
 
408
<dt><a name="usec"><code>(usec ['flg]) -> num</code></a>
 
409
<dd>Returns the number the microseconds. If <code>flg</code> is
 
410
non-<code>NIL</code>, the microsecond fraction of the last call to <code><a
 
411
href="refT.html#time">time</a></code> is returned, otherwise the number of
 
412
microseconds since interpreter startup. See also <code><a
 
413
href="refD.html#date">date</a></code> and <code><a
411
414
href="refT.html#tick">tick</a></code>.
412
415
 
413
416
<pre><code>
414
417
: (usec)
415
418
-> 1154702479219050
 
419
: (list (date (date)) (time (time T)) (usec T))
 
420
-> ((2013 1 4) (10 12 39) 483321)
416
421
</code></pre>
417
422
 
418
423
</dl>