summaryrefslogtreecommitdiff
path: root/rational.c
diff options
context:
space:
mode:
authortadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-03-10 00:18:52 +0000
committertadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-03-10 00:18:52 +0000
commitec9eabc6c2df764c2c51e72e23bb7512bb77d965 (patch)
treeb1c5fd04d75d47732d1fcbd0702080d65d32fbbf /rational.c
parentb3265c0ed6d7a2db76c172aef128445902c36c63 (diff)
* complex.c: described syntax of string form.
* rational.c: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39677 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'rational.c')
-rw-r--r--rational.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/rational.c b/rational.c
index a78b3202ec..e5992ed76f 100644
--- a/rational.c
+++ b/rational.c
@@ -571,6 +571,18 @@ f_rational_new_no_reduce2(VALUE klass, VALUE x, VALUE y)
*
* Rational(1, 2) #=> (1/2)
* Rational('1/2') #=> (1/2)
+ *
+ * Syntax of string form:
+ *
+ * rational = [ sign ] , unsigned rational ;
+ * unsigned rational = numerator | numerator , "/" , denominator ;
+ * numerator = integer part | fractional part | integer part , fractional part ;
+ * denominator = digits ;
+ * integer part = digits ;
+ * fractional part = "." , digits , [ ( "e" | "E" ) , [ sign ] , digits ] ;
+ * sign = "-" | "+" ;
+ * digits = digit , [ { digit | "_" , digit } ] ;
+ * digit = "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" ;
*/
static VALUE
nurat_f_rational(int argc, VALUE *argv, VALUE klass)