Braqzen
Braqzen
No - `sqrt` - `logarithm` - `binary logarithm`
There is a strange formatting bug which I haven't been able to pinpoint within 30 minutes. Using `forc 0.48.1` and the following snippet run `forc fmt` ```sway library; use std::{constants::ZERO_B256,...
It appears that either CI does not check formatting properly or the formatter has a minor bug as seen https://github.com/FuelLabs/sway/blob/5d712a083b7f564a777969356a8118696c91e2c5/sway-lib-std/src/storage/storage_map.sw#L56-L59
While testing a PR unrelated to the Sway repo I've been messing around with the manifest file. On `forc` version `0.46.0` with the following manifest file ```bash toolchain = {...
Directories `array_conversions` and `bytes_conversions` are missing `u8` and `str` implementations
The `--testnet` flag is a target and we have a `--target` flag. These ought to be merged to allow the use of one flag via `--target testnet` or `--target `
When the compiler improves and we can decouple `AssetId` from the `contract_id.sw` create a new module for it.
```sway let word1 = String::from_ascii_str("Fuel"); let word2 = String::from_ascii_str(" baby!"); let word3 = word1 + word2; // Fuel baby! ```