You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tui-rs/src
Vadim Chekan 1683e8d609
Clean redundant generics params in Table (#234)
* Clean redundant generics params in Table

It is possible to use associated types the same way as generics parameters. In fact associated types are nothing more than better organized generics params. For example, there is no need to introduce another param to constraint iterator item to be Display, you can just say `where I::Iterator, I::Item: Display`. This allows to drop type params for Table from 5 to 2.
4 years ago
..
backend style: fix clippy warnings 4 years ago
widgets Clean redundant generics params in Table (#234) 4 years ago
buffer.rs feat: add stateful widgets 4 years ago
layout.rs feat(widgets/chart): add more control on the visibility of the legend 4 years ago
lib.rs feat: add stateful widgets 4 years ago
style.rs Mark Style::* functions `const` 4 years ago
symbols.rs refactor: clean up border type for blocks 5 years ago
terminal.rs feat: add stateful widgets 4 years ago