zoukankan      html  css  js  c++  java
  • IfcUniquePropertyName

    IfcUniquePropertyName

    该函数获取IfcProperty的集合。它遍历IfcProperty的attibute名称,并验证没有名称出现两次。

    IFC4中的新功能

    EXPRESS Specification

    FUNCTION IfcUniquePropertyName
    (Properties : SET [1:?] OF IfcProperty)
    :LOGICAL;
    
    LOCAL
       Names : SET OF IfcIdentifier := [];
    END_LOCAL;
    
    REPEAT i:=1 TO HIINDEX(Properties);
       Names := Names + Properties[i].Name;
    END_REPEAT;
    
    RETURN (SIZEOF(Names) = SIZEOF(Properties));

    #########################

    QQ 3087438119
  • 相关阅读:
    c++ 容器学习 理论
    TCP和UDP发送数据包的大小问题
    key.go
    election.go
    watch.go
    txn.go
    sort.go
    retry.go
    op.go
    maintenance.go
  • 原文地址:https://www.cnblogs.com/herd/p/14994544.html
Copyright © 2011-2022 走看看