Does not rely on len() to check whether the initialized slice is empty

王林
Release: 2024-02-12 18:10:06
forward
470 people have browsed it

不依赖 len() 检查初始化切片是否为空

Question content

I have a use case where the built-in len() function is not suitable for checking if the initialized (non-zero) slice is empty.

How to safely check if a slice is empty without len()?

I try to index the first element, however, if it doesn't exist, my program panics.

Workaround

There is absolutely no reason not to use len(), so just use len since len is an O(1) operation .

The above is the detailed content of Does not rely on len() to check whether the initialized slice is empty. For more information, please follow other related articles on the PHP Chinese website!

source:stackoverflow.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template