[Swift-commit] r6405 - trunk/docs/merged/refmanual

ketan at ci.uchicago.edu ketan at ci.uchicago.edu
Sun Mar 24 21:53:50 CDT 2013


Author: ketan
Date: 2013-03-24 21:53:50 -0500 (Sun, 24 Mar 2013)
New Revision: 6405

Modified:
   trunk/docs/merged/refmanual/swiftlang
Log:
cleaning up

Modified: trunk/docs/merged/refmanual/swiftlang
===================================================================
--- trunk/docs/merged/refmanual/swiftlang	2013-03-25 02:16:58 UTC (rev 6404)
+++ trunk/docs/merged/refmanual/swiftlang	2013-03-25 02:53:50 UTC (rev 6405)
@@ -416,52 +416,6 @@
 String concatenation is also performed with +++ (plus).
 +==+ and +!=+ may also be used on strings.
 
-== Standard Library
-
-=== Output
-
-+trace(anything, anything, ...)+:: Report the value of any variable
-+tracef("anything %format", anything, ...)+:: Report the value of any variable
-
-
-=== String functions
-
-+ at strcat(string,string)+: Concatenation
-
-=== System
-
- #include <sys.swift>
-
-+getenv(string) -> string+:: Obtain an environment variable
-
-[[argv]]
-==== Command line
-
-Swift accepts commandline arguments in the form of -var <value>. 
-
-==== Debugging
-
- #include <assert.swift>
-
-+assert(boolean condition, string message)+::
-If condition is false, report +message+ and exit immediately.
-
-=== Files
-
-+filename(file) -> string+::   Obtain the name of a file
-+input_file(string) -> file+:: Obtain a +file+.  At run time, the
-filesystem is checked for the given file name
-+readFile(file) -> string+::   Read file as a string
-+writeFile(string) -> file+::  Write string to file
-+glob(string) -> file[]+:: Perform glob operation, returning files
-that match.  Available glob symbols include:
-+
-* +*+: any character sequence (including the zero-length sequence)
-* +?+: any character
-* +[chars]+: any of the given characters
-* +\x+: character +x+
-* +{a,b,c,...}+ any of +a+, +b+, +c+, etc.
-
 == Defining Apps 
 
 In typical Swift applications, the computationally intensive parts of the




More information about the Swift-commit mailing list