Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed unused Borrow trait requirements #53

Open
wants to merge 7 commits into
base: main
Choose a base branch
from

Commits on Apr 24, 2023

  1. Use owned variables in examples (al8n#49)

    * Cache takes ownership of input data
    
    The cache example now owns the data, and not static references, as mentioned in al8n#48 Also variable names are modified to explain their usage.
    
    * Update sync_example.rs
    
    The cache example now owns the data, and not static references, as mentioned in al8n#48 Also variable names are modified to explain their usage.
    peter-scholtens authored Apr 24, 2023
    Configuration menu
    Copy the full SHA
    b161a98 View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2023

  1. Specify number of entries parameter as (usize) integer (al8n#51)

    While reviewing the code I was a confused by the name num_entries which suggest an integer while actually a fractional number is used. Changing this to usize makes the function call 7 machine code instructions shorter and the function body longer 5 instructions longer (from 65 to 70, as checked by the compiler explorer https://godbolt.org/ ). So with improved code readability also 2 instructions less are needed.
    peter-scholtens authored Apr 26, 2023
    Configuration menu
    Copy the full SHA
    e89d308 View commit details
    Browse the repository at this point in the history

Commits on May 4, 2023

  1. Configuration menu
    Copy the full SHA
    18a12c9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cc28dda View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2023

  1. Configuration menu
    Copy the full SHA
    c8cd619 View commit details
    Browse the repository at this point in the history

Commits on Dec 18, 2023

  1. Increased waiting time by three

    A single character contribution.
    peter-scholtens authored Dec 18, 2023
    Configuration menu
    Copy the full SHA
    d350418 View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2024

  1. Configuration menu
    Copy the full SHA
    34e6023 View commit details
    Browse the repository at this point in the history