Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Post History
For example, given this function head, this is the hint that is generated: let updateCell workbook sheetIndex rowIndex columnIndex value = // XSSFWorkbook -> int -> int -> int -> stri...
#1: Initial revision
How to "materialize" Ionide function signature type hints as comments?
For example, given this function head, this is the hint that is generated: ```fsharp let updateCell workbook sheetIndex rowIndex columnIndex value = // XSSFWorkbook -> int -> int -> int -> string -> unit ``` Helpful, but this hint cannot be saved with the source code, and it also cannot be copied by selecting it (I had to type it in here). I could use explicit typing, but the readability is worse: ```fsharp let updateCell (workbook: XSSFWorkbook) (sheetIndex: int) (rowIndex: int) (columnIndex: int) (value: string) = ```