| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-10-16 | Update Exercises Directory Names to Reflect Order | Adam Brewer | |
| 2023-09-14 | fix: test name typo | Jurglic | |
| 2023-08-07 | Fix from_into.rs tests | Alon Hearter | |
| 2023-05-29 | docs: cleanup the explanation paragraphs at the start of each exercise. | Robert Fry | |
| 2023-03-30 | feat(docs): add markdown linter for exercises README.md files | Ali Afsharzadeh | |
| 2022-11-24 | chore: added more descriptive TODOs | TK Buristrakul | |
| 2022-10-21 | fix: Revert deref change | Arkid | |
| Revert the addition of a deref in PR #1192 by me, which should not be there. Apologies for the inconvenience caused. | |||
| 2022-09-09 | fix: Add a deref in the test code | Arkid | |
| It's virtually impossible to write a the `num_sq` function to take the Box since it doesn't implement `MulAssign`. | |||
| 2022-07-15 | fix(try_from_into): fix function name | Rod Elias | |
| 2022-07-15 | feat(as_ref_mut): add AsMut section | mokou | |
| 2022-07-15 | feat(try_from_into): add hint comments | mokou | |
| 2022-07-15 | feat(conversions): add hint comments | mokou | |
| 2022-07-11 | chore: remove mod.rs files and exercises feature | mokou | |
| 2022-04-19 | refactor(using_as): improve readability by using sum() instead of fold() | fointard | |
| 2022-03-29 | fix: Include exercises folder in the project structure behind a feature (#917) | x-hgg-x | |
| closes #859 closes #913 closes #942 | |||
| 2021-09-25 | Merge pull request #781 from tlyu/advanced-errs | diannasoriel | |
| feature: advanced errors | |||
| 2021-07-08 | Merge pull request #737 from ghost/correct-small-typo | fmoko | |
| Correct small typo in exercises/conversions/from_str.rs | |||
| 2021-06-24 | fix(from_str, try_from_into): custom error types | Taylor Yu | |
| Remove the use of trait objects as errors from `from_str` and `try_from_into`; they seem to have caused a lot of confusion in practice. (Also, it's considered best practice to use custom error types instead of boxed errors in library code.) Instead, use custom error enums, and update hints accordingly. Hints also provide some guidance about converting errors, which could be covered more completely in a future advanced errors section. Also move from_str to directly after the similar exercise `from_into`, for the sake of familiarity when solving. | |||
| 2021-04-27 | fix: Correct small typo in exercises/conversions/from_str.rs | Martin HART | |
| 2021-04-23 | docs(exercises): updated all exercises readme files | Zerotask | |
| all exercises readme files now have a unified structure and a description | |||
| 2021-04-04 | fix: use trait objects for from_str | Taylor Yu | |
| Use `Box<dyn error::Error>` to allow solutions to use `?` to propagate errors. | |||
| 2021-04-04 | fix: use trait objects for try_from_into | Taylor Yu | |
| Use `Box<dyn error::Error>` to allow solutions to use `?` to propagate errors. In the tests, explicitly check `is_ok()` instead of trying to force the error type to `String` (or other `PartialEq` type) using `assert_eq!()`. | |||
| 2021-02-21 | fix(from_str): Correct typos | Jirka Kremser | |
| typos in the comments | |||
| 2021-01-21 | fix(from_str): test for error instead of unwrap/should_panic | Jean-Francois Chevrette | |
| 2021-01-09 | feat(from_into) : add test for checking unnecessary trailing value | Sang-Heon Jeon | |
| 2021-01-09 | feat(from_str) : add test for checking unnecessary trailing value | Sang-Heon Jeon | |
| 2020-12-03 | feat(try_from_into): remove duplicate annotation | Christos Kontas | |
| 2020-11-11 | fix(try_from_into): type error | Wei Hu | |
| 2020-11-08 | fix(try_from_into): Update description (#584) | JP | |
| Description update | |||
| 2020-11-07 | feat(try_from_into): Add tests (#571) | fiplox | |
| Co-authored-by: Volodymyr Patuta <6977238-fiplox@users.noreply.gitlab.com> | |||
| 2020-09-25 | chore: Change point to comma in from_into.rs | Greg Leonard | |
| A typo in the fn test_bad_age() hint message had a point rather than comma Prev: // Test that "Mark.twenty" Current: // Test that "Mark,twenty" | |||
| 2020-09-07 | fix(using_as): Add test so that proper type is returned. (#512) | Ryan McQuen | |
| 2020-08-10 | chore: Run rustfmt on exercises | Étienne Barrié | |
| 2020-07-13 | feat(try_from_into): Add insufficient length test (#469) | Chad Dougherty | |
| 2020-07-11 | chore: Alter whitespace for consistency | Benjamin Jones | |
| * Add newline after "I AM DONE" in exercises for consistency * Remove trailing whitespace from exercises | |||
| 2020-06-08 | Added example to show the AsRef working | millefalcon | |
| 2020-05-15 | feat: Rewrite try_from_into (#393) | IkaR49 | |
| 2020-05-03 | Merge pull request #368 from apatniv/update_test_case | fmoko | |
| 2020-05-02 | Review Comments: Add other test cases | apatniv | |
| 2020-04-30 | fix(from_into.rs): typo | Jihchi Lee | |
| 2020-04-21 | test: Add missing test case for from_str exercise | apatniv | |
| 2020-04-17 | fix: confusing comment in conversions/try_from_into.rs | lebedevsergey | |
| Co-authored-by: Lebedev <sergey.lebedev@corp.mail.ru> | |||
| 2020-04-08 | remove bottom comment instead of top | Tonći Galić | |
| 2020-04-07 | Remove duplicate not done comment | Tonći Galić | |
| As indicated in #259 , I found it confusing to have 2 comments as the code wouldn't compile unless I solved both issues (I used the script from #281 to remove a comment and use `:wn` to go to next exercise, hence this tripped me). | |||
| 2020-03-11 | adds additional test to meet exercise rules | skim | |
| 2019-12-23 | Enable a test and improve per clippy's suggestion. | dmitri-mamrukov | |
| 2019-12-16 | I AM NOT DONE comment in conversions exercise files | Abdou Seck | |
| 2019-12-16 | feat: Add type conversion and parsing exercises | Abdou Seck | |
