Author: petdance
Date: Sun Mar 23 22:51:18 2008
New Revision: 26525

Modified:
   trunk/src/builtin.c

Log:
More ajr doc updates

Modified: trunk/src/builtin.c
==============================================================================
--- trunk/src/builtin.c (original)
+++ trunk/src/builtin.c Sun Mar 23 22:51:18 2008
@@ -1,5 +1,5 @@
 /*
-Copyright (C) 2003-2007, The Perl Foundation.
+Copyright (C) 2003-2008, The Perl Foundation.
 $Id$
 
 =head1 NAME
@@ -132,7 +132,9 @@
 
 =item C<static int find_builtin>
 
-RT#48260: Not yet documented!!!
+Locate the first entry corresponding to the supplied function name,
+using a modified binary search.
+Returns the index if a match is found, -1 if not.
 
 =cut
 
@@ -170,7 +172,8 @@
 
 =item C<static int find_builtin_s>
 
-RT#48260: Not yet documented!!!
+Locate the first entry corresponding to the supplied method name.
+Returns the indes if a match is found, -1 if not.
 
 =cut
 
@@ -203,7 +206,11 @@
 
 =item C<static int check_builtin_sig>
 
-RT#48260: Not yet documented!!!
+Takes the builtin's index, a signature string, and a flag indicating
+if conversion to PMCs is allowed.
+Compares the builtin's signature to the supplied string.
+Returns 1 if they match where it matters, (voids are ignored),
+returns 0 if they don't. 
 
 =cut
 
@@ -335,7 +342,8 @@
 
 =item C<const char * Parrot_builtin_get_c_namespace>
 
-RT#48260: Not yet documented!!!
+Takes a builtin's index and returns a pointer to the corresponding
+C namespace string.
 
 =cut
 
@@ -355,7 +363,7 @@
 
 =item C<int Parrot_builtin_is_class_method>
 
-RT#48260: Not yet documented!!!
+Tells us if the builtin is a class method, based on the signature.
 
 =cut
 
@@ -374,7 +382,7 @@
 
 =item C<int Parrot_builtin_is_void>
 
-RT#48260: Not yet documented!!!
+Tells us if the builtin is void, based on the signature.
 
 =cut
 

Reply via email to