Version History

From Sputnik Wiki
(Difference between revisions)
Jump to: navigation, search
(Whats New)
(Sputnik 0.15 @ 08-25-2013 01:15 AM)
Line 627: Line 627:
 
* Count() function added this ALWAYS returns how many elements are in an array or binary array etc (includes hash keys as well)
 
* Count() function added this ALWAYS returns how many elements are in an array or binary array etc (includes hash keys as well)
 
* UBound() has been modified to now return the index of the highest element in the array (instead of total count)
 
* UBound() has been modified to now return the index of the highest element in the array (instead of total count)
* LBound() added and returns the lowest index in the array
+
* LBound() added and returns the lowest index in the array (Since arrays in Sputnik are dynamic like PHP you could have a LBound at 6 and UBound at 200 however running Order() function will move the indexes to start from 0 alternatively Unshift() will also do that and of course Count() will return the total amount of elements)
(Since arrays in Sputnik are dynamic like PHP you could have a LBound at 6 and UBound at 200 however running Order() function will move the indexes to start from 0 alternatively Unshift() will also do that and of course Count() will return the total amount of elements)
+
 
* Improved speed of loops by up 2-3 fold (Which also improved speed of Math a bit)
 
* Improved speed of loops by up 2-3 fold (Which also improved speed of Math a bit)
 
* HTTPDownload() now accepts a new param that lets you define a variable to store and will be used as $param in the Progress() and Completed() events (Useful for storing the class $this).
 
* HTTPDownload() now accepts a new param that lets you define a variable to store and will be used as $param in the Progress() and Completed() events (Useful for storing the class $this).

Revision as of 22:11, 11 August 2014

Contents

Sputnik 0.23 @ 08-11-2014 05:54 AM

Whats New

Sputnik 0.22 @ 03-21-2014 05:54 AM

Whats New

Sputnik 0.21 @ 09-28-2013 05:26 PM

Whats New

Sputnik 0.20 @ 09-19-2013 10:58 PM

Whats New

Sputnik 0.19 @ 09-16-2013 10:25 PM

Whats New

Sputnik 0.18 @ 09-12-2013 01:42 AM

Whats New

>>> Read about Sprintf here <<<

$a = array(); $a[0] = "blah"; $a[1] = $a;

println("C:\\"); // Where as this would fail <-- No longer fails

Added new LINQ function From() Added new LINQ function AndFrom() Added new LINQ function NotFrom() Added new LINQ function Where() Added new LINQ function WhereNot() Added new LINQ function AndWhere() Added new LINQ function AndWhereNot() Added new LINQ function Size() Added new LINQ function OrderBy() Added new LINQ function OrderByDescending() Added new LINQ function OrderByAscending() Added new LINQ function First() Added new LINQ function FirstOrDefault() Added new LINQ function Last() Added new LINQ function LastOrDefault() Added new LINQ function Any() Added new LINQ function All() Added new LINQ function Invert() Added new LINQ function Select() (Note - The LINQ stuff is just a test and may or may not be removed later and/or moved to the Lib folder who knows)

Sputnik 0.17 @ 08-29-2013 05:49 PM

Whats New

Sputnik 0.16 @ 08-25-2013 07:56 AM

Whats New

Sputnik 0.15 @ 08-25-2013 01:15 AM

Whats New

Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox