Browse Source

Cleanups.

Mark Sibly 8 years ago
parent
commit
009c0aa2ee
2 changed files with 20 additions and 1 deletions
  1. 19 0
      modules/std/newdocs/manual.md
  2. 1 1
      modules/std/std.monkey2

+ 19 - 0
modules/std/newdocs/manual.md

@@ -0,0 +1,19 @@
+
+@manpage The std module
+
+# The std module
+
+The std module contains a number of general purpose types and functions for use with a wide variety of app types.
+
+The standard module includes the following namespaces:
+
+| Namespace				| Description
+|:----------------------|:-----------
+| [[std.collections]]	| The Stack, List and Map container classes.
+| [[std.filesystem]]	| Functions for working with the OS filesystem.
+| [[std.stringio]]		| Functions to help with loading, saving and parsing strings.
+| [[std.stream]]		| The abstract Stream class and useful subclasses including FileStream.
+| [[std.memory]]		| The DataBuffer class to make dealing with memory buffers easier.
+| [[std.graphics]]		| Classes and functions for dealing with raw graphics data such Pixmap and Color.
+| [[std.audio]]			| Classes and functions for dealing with raw audio data such AudioData and Color.
+| [[std.random]]		| Functions for generating random numbers.

+ 1 - 1
modules/std/std.monkey2

@@ -75,7 +75,7 @@ Namespace std
 #Import "misc/chartype"
 #Import "misc/stringio"
 #Import "misc/json"
-'#Import "misc/jsonify"
+#Import "misc/jsonify"
 #Import "misc/zipfile"
 
 #Import "socket/socket"