示例#1
0
文件: Api.cs 项目: wangpei421/h3net
 /// <summary>
 /// returns whether the H3Index is a valid unidirectional edge
 /// </summary>
 public static int H3UnidirectionalEdgeIsValid(H3Index edge)
 {
     return(edge.IsValidUniEdge()
                ? 1
                : 0);
 }