I understand that Swift tuples cannot be indexed at runtime. However, I'm working with the POSIX terminal interface (defined by <termios.h>
, which is part of libc).
In the C code, we are able to modify the state of the terminal by doing stuff like this:
termios_struct.c_cc[VMIN] = 0;
termios_struct.c_cc[VTIME] = 0;
Translating that to Swift raises an error, complaining that it cannot access element using subscript for tuple type '(cc_t, cc_t, cc_t ...)' (aka '(UInt8, UInt8, UInt8 ...)')
. The actual tuples have about twenty elements, all UInt8
.
I guess I could just print the values of VMIN
and VTIME
(constants defined by <termios.h>
), then use their values to directly index the tuples, but I'm not sure their values are consistent across platforms, and it's just generally hacky.
What's the proper way to handle this situation?
Edit: This issue is addressed by this answer to another question, named Using termios
in Swift.
Using the answer you referenced as a guide, I came up with the following extension that seems to work.
Here's some sample code:
which outputs: