purescript-lua icon indicating copy to clipboard operation
purescript-lua copied to clipboard

`Data.String.CodePoints` in `purescript-lua-strings` is not implemented

Open Renegatto opened this issue 1 month ago • 0 comments

The module is still in todo-state and implemented as:

return { 
    _toCodePointArray = (function (str)
        error("Not implemented: _toCodePointArray")
    end),
    _fromCodePointArray = (function (codePoints)
        error("Not implemented: _fromCodePointArray")
    end),
}

Probably this issue should be in purescript-lua-strings or in package sets repository, but both seem to have GH Issues feature disabled.

Renegatto avatar Oct 08 '25 20:10 Renegatto