Skip to content

perf: cache mappers, avoid allocations, codons are arrays #305

perf: cache mappers, avoid allocations, codons are arrays

perf: cache mappers, avoid allocations, codons are arrays #305

Triggered via pull request June 10, 2024 14:12
@tediltedil
synchronize #172
Status Success
Total duration 11s
Artifacts

conventional-prs.yml

on: pull_request_target
title-format
3s
title-format
Fit to window
Zoom out
Zoom in

Annotations

2 warnings
use of a fallible conversion when an infallible one could be used: src/parser/ds.rs#L497
warning: use of a fallible conversion when an infallible one could be used --> src/parser/ds.rs:497:18 | 497 | .try_into() | ^^^^^^^^ help: use: `into` | = note: converting `RnaInterval` to `Range<i32>` cannot fail = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_fallible_conversions
use of a fallible conversion when an infallible one could be used: src/parser/ds.rs#L490
warning: use of a fallible conversion when an infallible one could be used --> src/parser/ds.rs:490:18 | 490 | .try_into() | ^^^^^^^^ help: use: `into` | = note: converting `TxInterval` to `Range<i32>` cannot fail = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_fallible_conversions = note: `#[warn(clippy::unnecessary_fallible_conversions)]` on by default