aboutsummaryrefslogtreecommitdiff
path: root/crates/ide_assists/src/handlers/generate_is_empty_from_len.rs
Commit message (Collapse)AuthorAgeFilesLines
* Rename target_ty to self_tyLukas Wirth2021-03-291-1/+1
|
* 7709: Added the check for return type of len function.Chetan Khilosiya2021-03-151-9/+26
|
* 7709: Updated the implementation.Chetan Khilosiya2021-03-151-37/+67
| | | | | The get function from impl method is updated. and now same method used to get len and is_empty function.
* 7709: Added the assist to generate is_empty functionChetan Khilosiya2021-03-151-0/+225
the assist will be shown when the len function is implemented. is_empty internally uses len function.