mirror of
https://github.com/Sei-Lisa/LSL-PyOptimizer
synced 2025-07-01 15:48:21 +00:00
Implement it in lslbasefuncs.py, and add tests. Also add more test vectors for llMD5String and llSHA1String.
19 lines
461 B
Text
19 lines
461 B
Text
[ llDumpList2String([1e11], "/")
|
|
, llFrand(0.0)
|
|
, llFrand(-0.0)
|
|
, llFrand(1e40)
|
|
, llFrand(-1e40)
|
|
, llFrand(1e40*0)
|
|
, llFrand((float)"nan")
|
|
, llDumpList2String(llCSV2List("a,<<1,2>,3,4,\">5,6, \"1,3\",7<<>,8,9"), "|")
|
|
, llGetListEntryType([], 0)
|
|
, llGetListEntryType([[]], 0)
|
|
, llMD5String("", 0)
|
|
, llMD5String("abc", 0)
|
|
, llMD5String("abc", 1)
|
|
, llMD5String("abc", -12345)
|
|
, llSHA1String("")
|
|
, llSHA1String("abc")
|
|
, llSHA256String("")
|
|
, llSHA256String("abc")
|
|
]
|