Module talk:number list/utils
මාතෘකාවක් එක්කරන්නපෙනුම
| oldid | date/time | username | edit summary |
|---|---|---|---|
| 69013847 | 2022-09-02T03:51:15Z | Benwing2 | in map(), pass include_modifiers when calling recursively |
| 69003943 | 2022-09-02T00:39:00Z | Benwing2 | add include_modifiers to `map` |
| 68998736 | 2022-09-01T05:35:17Z | Benwing2 | expand map() to allow for nil being returned (equivalent to returning a zero-element list) |
| 68998688 | 2022-09-01T05:21:02Z | Benwing2 | add filter() |
| 68977879 | 2022-08-29T07:55:25Z | Benwing2 | expand map() to handle flatmap() functionality and document what it does |
| 68709272 | 2022-08-25T03:26:19Z | Benwing2 | fix bug in add_thousands_separator() |
| 68709239 | 2022-08-25T03:00:58Z | Benwing2 | add map() |
| 68629618 | 2022-08-14T19:28:43Z | Benwing2 | Created page with "local export = {} function export.power_of(n, base) return (base or 1) .. string.rep("0", n) end -- Format a number (either a Lua number or a string) in fixed point without any decimal point or scientific notation. -- `tostring()` doesn't work because it converts large numbers such as 1000000000000000 to "1e+15". function export.format_fixed(number) if type(number) == "string" then return number else return ("%.0f"):format(number) end end function export.add_t..." |
Start a discussion about Module:number list/utils
Talk pages are where people discuss how to make content on Wiktionary the best that it can be. You can use this page to start a discussion with others about how to improve Module:number list/utils.