MCPcopy Create free account
hub / github.com/OSGeo/gdal / GDALAlgorithmHasSubAlgorithms

Function GDALAlgorithmHasSubAlgorithms

gcore/gdalalgorithm.cpp:7634–7638  ·  view source on GitHub ↗

Return whether the algorithm has sub-algorithms. * * @param hAlg Handle to an algorithm. Must NOT be null. * @since 3.11 */

Source from the content-addressed store, hash-verified

7632 * @since 3.11
7633 */
7634bool GDALAlgorithmHasSubAlgorithms(GDALAlgorithmH hAlg)
7635{
7636 VALIDATE_POINTER1(hAlg, __func__, false);
7637 return hAlg->ptr->HasSubAlgorithms();
7638}
7639
7640/************************************************************************/
7641/* GDALAlgorithmGetSubAlgorithmNames() */

Callers 1

TEST_FFunction · 0.85

Calls 1

HasSubAlgorithmsMethod · 0.80

Tested by 1

TEST_FFunction · 0.68