Bernard Igiri
Bernard Igiri
If you convert -80.00 0.00 to UTM using LLtoUTMUPSObject you end up with a negative northing value which is incorrect. Northing values should always be positive. The unit test misses...
This PR addresses multiple issues and enhancements related to CLI behavior and library compatibility: ### 🐛 Bug Fix - Fixes [[#2](https://github.com/rutrum/ccase/issues/2)](https://github.com/rutrum/ccase/issues/2): Correctly detects when `stdin` is piped, allowing input fallback...
# Add `build_from` and `build_from_clone` builder methods Closes #310 This PR adds support for two new optional top-level builder attributes: * `#[builder(build_from)]` – Adds a `.build_from(&T)` method * `#[builder(build_from_clone)]` –...
I'd like to propose support for a `.from(&T)` method on `bon` builders that prepopulates the builder fields by cloning from an existing instance. This would streamline a common use case...
Currently, I'm using a custom Fish function to list my cheat sheets along with a short summary of each: ```fish function cheat-ls --wraps='cheat -lt [tag]' set tag personal if test...
## **Summary** Introduce a new `mockall` API method: **`.return_with_context(...)`**, allowing you to define stateful behavior per invocation by passing a mutable context value into each call. This simplifies mocking methods...