| 850 | |
| 851 | |
| 852 | class AlgorithmDeviceFindFirstOf(Algorithm): |
| 853 | algorithm_name = "device_find_first_of" |
| 854 | cpp_configuration_template_name = "find_first_of_config_template" |
| 855 | config_selection_params = [ |
| 856 | SelectionType(name="value_type", is_optional=False, select_on_size_only=True) |
| 857 | ] |
| 858 | |
| 859 | def __init__(self, fallback_entries): |
| 860 | Algorithm.__init__(self, fallback_entries) |
| 861 | |
| 862 | |
| 863 | class AlgorithmDeviceRunLengthEncode(Algorithm): |
no test coverage detected