Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.79 KB | None | 0 0
  1. /**
  2.      * parameter information
  3.      *
  4.      *  def m(a1, a2, ..., aM,                    # mandatory
  5.      *        b1=(...), b2=(...), ..., bN=(...),  # optional
  6.      *        *c,                                 # rest
  7.      *        d1, d2, ..., dO,                    # post
  8.      *        e1:(...), e2:(...), ..., eK:(...),  # keyword
  9.      *        **f,                                # keyword_rest
  10.      *        &g)                                 # block
  11.      * =>
  12.      *
  13.      *  lead_num     = M
  14.      *  opt_num      = N
  15.      *  rest_start   = M+N
  16.      *  post_start   = M+N+(*1)
  17.      *  post_num     = O
  18.      *  keyword_num  = K
  19.      *  block_start  = M+N+(*1)+O+K
  20.      *  keyword_bits = M+N+(*1)+O+K+(&1)
  21.      *  size         = M+N+O+(*1)+K+(&1)+(**1) // parameter size.
  22.      */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement