Search results

From Sputnik Wiki
Jump to: navigation, search
  • You can use Signed Binary numbers if you place a 0b before the number such as 0b101 this will produce You can use Unsigned Binary numbers if you place a 0b before the number and a U after it such as 0b101U
    72 KB (10,669 words) - 11:57, 27 September 2015
  • == Function Reference == === How to create a Function ===
    124 KB (17,207 words) - 07:54, 20 December 2015
  • Name of the file to open (can be text or binary). [[Category:Core Function]]
    1 KB (217 words) - 10:36, 18 June 2015
  • Returns a formatted string (similar to the C sprintf() function). ...ely print to the console rather than return a string you should see [[Core Function Printf|Printf( <format control>, <params> )]].
    32 KB (4,292 words) - 12:38, 14 June 2015
  • UBound( <array/binary-array> ) ==== array/binary-array ====
    817 B (111 words) - 12:38, 14 June 2015
  • Pack data into a binary array. Pack given arguments into a binary string according to format.
    21 KB (3,130 words) - 19:17, 18 September 2015
  • Unpack( <format>, <data/binary-array>, <flag> ) Unpack data from a binary array
    3 KB (523 words) - 12:38, 14 June 2015
  • LBound( <array/binary-array> ) ==== array/binary-array ====
    655 B (84 words) - 12:37, 14 June 2015
  • BinaryStr( <binary-array>, <separator> ) Create a Hex string from a binary array.
    765 B (89 words) - 12:38, 14 June 2015
  • Create a binary array from a hex string. A string of hex to convert into a binary variable.
    2 KB (225 words) - 12:38, 14 June 2015
  • BinaryLen( <binary-array>, <newLen>, <fillWith> ) Returns the number of bytes in a binary variable.
    3 KB (433 words) - 12:38, 14 June 2015
  • BinaryGet( <binary-array>, <index> ) Get the byte at an index of a binary variable.
    1 KB (135 words) - 12:38, 14 June 2015
  • BinarySet( <binary-array>, <index>, <value> ) Get the byte at an index of a binary variable.
    1 KB (146 words) - 12:38, 14 June 2015
  • BinaryReverse( <binary-array>, <start>, <length> ) Reverse the order bytes a binary variable.
    2 KB (206 words) - 12:38, 14 June 2015
  • BinaryClone( <binary-array> ) Clone a binary variable 100% and return a new binary variable with exactly same data as the old one.
    1 KB (160 words) - 12:38, 14 June 2015
  • BinaryMid( <binary-array>, <start>, <length> ) Create a binary variable by extracting a number of bytes from another binary variable.
    1 KB (196 words) - 12:38, 14 June 2015
  • BinaryAppend( <binary-array>, <binary-array2>, <flag> ) Append a binary variables data onto the end or beginning of another binary variables data.
    1 KB (154 words) - 12:38, 14 June 2015
  • BinaryPush( <binary-array>, <byte> ) Add a byte to the end of a binary variable.
    785 B (106 words) - 12:38, 14 June 2015
  • BinaryUnshift( <binary-array>, <byte> ) Add a byte to the beginning of a binary variable.
    812 B (106 words) - 12:38, 14 June 2015
  • BinaryPop( <binary-array> ) Delete the last byte from a binary variable.
    671 B (82 words) - 12:38, 14 June 2015
  • BinaryShift( <binary-array> ) Delete the first byte from a binary variable.
    676 B (82 words) - 12:38, 14 June 2015
  • Create a new binary variable by loading binary data from a file. Success: Returns the new binary variable.
    1 KB (129 words) - 21:53, 26 June 2015
  • BinarySave( <binary-array>, <file>, <flag> ) Save a binary variable data to file.
    1 KB (185 words) - 12:38, 14 June 2015
  • BinaryCompress( <binary-array> ) Compress a binary variables data.
    1,006 B (117 words) - 12:38, 14 June 2015
  • BinaryUncompress( <binary-array> ) Uncompress a binary variable data
    807 B (83 words) - 12:38, 14 June 2015
  • BinaryWipe( <binary-array> ) Wipes a binary variables data 100% and sets the variable to a blank int containing null.
    918 B (111 words) - 12:38, 14 June 2015
  • BinaryResize( <binary-array>, <size>, <data> ) Resize a binary variables data array.
    1 KB (159 words) - 12:38, 14 June 2015
  • BinaryInsert( <binary-array>, <binary-array2>, <index>, <overwrite> ) Insert a binary variables data into another binary variable at a specific location.
    2 KB (254 words) - 12:38, 14 June 2015
  • FileWriteBinary( <file>, <binary-array> ) Write the data from a binary variable to previously opened file at the current File Steam pointer locati
    1,009 B (133 words) - 12:38, 14 June 2015
  • FileAppendBinary( <file>, <binary-array> ) Append the data from a binary variable to the end of a previously opened file.
    1,019 B (133 words) - 12:38, 14 June 2015
  • Success: Returns a binary variable filled with data read from file. $binary = FileReadBinary($File);
    1 KB (163 words) - 12:38, 14 June 2015
  • Create a new binary variable and its array size and fill data type. The size (in bytes) of the new binary variable.
    883 B (121 words) - 12:38, 14 June 2015
  • ... a function to be private you must insert the "Private" keyword before the function. ...ction by name inside the class and by using $this-> but you can't call the function from outside the class this will prevent people from using functions that c
    20 KB (2,768 words) - 18:39, 21 September 2015
  • It also has a huge amount of functions in its core that are very fast (avoiding the user having to reinvent the wheel and havi ... overload every operator and cast and multiple inherit as well as powerful binary functions with powerful functions for handling bits.
    19 KB (3,356 words) - 20:07, 18 September 2015
  • $Result = MsgBox("My Message", "My Title", 32 | 4); // Binary operator [[Category:Core Function]]
    3 KB (325 words) - 12:38, 14 June 2015
  • Some might wonder the point of such a function when clear ~ operators exist but why not!. 5 == 00000000000000000000000000000101 binary
    952 B (116 words) - 12:38, 14 June 2015
  • ...ment is byte[n] OR ubyte[n] and index is omitted the data is returned as a Binary Variable example : // Get the whole byte array and store it as Binary data
    3 KB (341 words) - 12:38, 14 June 2015
  • ...byte[n] OR ubyte[n] and index is omitted the byte array can be set using a Binary Variable example : // Create a binary variable containing "Hello World!"
    3 KB (341 words) - 12:38, 14 June 2015
  • "v" Binary (Reads an Int32 for size then reads that many bytes) "V" Binary (Reads from current positoin to end of the buffer)
    964 B (147 words) - 06:22, 15 June 2015
  • $binary = Pack("ifz0", (int)100, (float)777.42, "Hello"); foreach( $binary as $item )
    763 B (92 words) - 11:38, 2 December 2011
  • Checks if a variable is a binary type. [[Category:Core Function]]
    419 B (45 words) - 10:36, 29 August 2013
  • BINARY @typeBINARY [[Category:Core Function]]
    1 KB (161 words) - 12:37, 14 June 2015
  • You can also load the image from a Binary Variable like GUIPictureBox($PB, "Load", $binary);
    1 KB (143 words) - 12:37, 14 June 2015
  • BinarySHA1( <binary-array> ) Returns the SHA1 hash of a binary variable.
    492 B (55 words) - 12:37, 14 June 2015
  • BinarySHA1( <binary-array> ) Returns the SHA1 hash of a binary variable.
    489 B (55 words) - 12:37, 14 June 2015
  • BinaryCompare( <binary-array>, <offset>, <needle, <needleOffset>, <length>, <ignoreCase> ) Compare two binary variables.
    4 KB (534 words) - 12:37, 14 June 2015
  • Reading and writing binary // Create binary from a string
    4 KB (441 words) - 12:37, 14 June 2015
  • /////////////////////////// THE FUNCTION BELOW Function Completed()
    6 KB (644 words) - 12:37, 14 June 2015
  • // Define an *binary* based variable // Type '17' (as String 'Binary')
    5 KB (668 words) - 12:55, 23 June 2015
  • Count( <array/binary-array/class> ) ==== array/binary-array ====
    2 KB (272 words) - 18:37, 21 September 2015

View (previous 50 | next 50) (20 | 50 | 100 | 250 | 500)

Personal tools
Namespaces
Variants
Views
Actions
Navigation
Toolbox