Check if Vector is a Fast-Access Vector
Examples
is_fast_access(1:10)
#> [1] FALSE
sound <- Sound$create_tone(frequency = 220, duration = 0.1, sampling_rate = 8000)
is_fast_access(get_sound_values_fast(sound))
#> [1] TRUE
Check if Vector is a Fast-Access Vector
is_fast_access(1:10)
#> [1] FALSE
sound <- Sound$create_tone(frequency = 220, duration = 0.1, sampling_rate = 8000)
is_fast_access(get_sound_values_fast(sound))
#> [1] TRUE