当前位置: 首页>>代码示例>>C++>>正文


C++ base_type::get_id方法代码示例

本文整理汇总了C++中base_type::get_id方法的典型用法代码示例。如果您正苦于以下问题:C++ base_type::get_id方法的具体用法?C++ base_type::get_id怎么用?C++ base_type::get_id使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在base_type的用法示例。


在下文中一共展示了base_type::get_id方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1:

bool ndt::categorical_kind_type::operator==(const base_type &rhs) const {
  if (this == &rhs) {
    return true;
  } else {
    return rhs.is_symbolic() && rhs.get_id() == categorical_id;
  }
}
开发者ID:izaid,项目名称:libdynd,代码行数:7,代码来源:categorical_kind_type.cpp

示例2:

bool ndt::int_kind_sym_type::operator==(const base_type &rhs) const
{
  if (this == &rhs) {
    return true;
  }
  else {
    return rhs.get_id() == int_sym_id;
  }
}
开发者ID:nyue,项目名称:libdynd,代码行数:9,代码来源:int_kind_sym_type.cpp

示例3: if

bool ndt::cuda_device_type::operator==(const base_type &rhs) const {
  if (this == &rhs) {
    return true;
  } else if (rhs.get_id() != cuda_device_id) {
    return false;
  } else {
    const cuda_device_type *tp = static_cast<const cuda_device_type *>(&rhs);
    return m_element_tp == tp->m_element_tp;
  }
}
开发者ID:insertinterestingnamehere,项目名称:libdynd,代码行数:10,代码来源:cuda_device_type.cpp

示例4: if

bool ndt::option_type::operator==(const base_type &rhs) const {
  if (this == &rhs) {
    return true;
  } else if (rhs.get_id() != option_id) {
    return false;
  } else {
    const option_type *ot = static_cast<const option_type *>(&rhs);
    return m_value_tp == ot->m_value_tp;
  }
}
开发者ID:insertinterestingnamehere,项目名称:libdynd,代码行数:10,代码来源:option_type.cpp

示例5: if

bool ndt::callable_type::operator==(const base_type &rhs) const {
  if (this == &rhs) {
    return true;
  } else if (rhs.get_id() != callable_id) {
    return false;
  } else {
    const callable_type *fpt = static_cast<const callable_type *>(&rhs);
    return m_return_type == fpt->m_return_type && m_pos_tuple == fpt->m_pos_tuple && m_kwd_struct == fpt->m_kwd_struct;
  }
}
开发者ID:mindis,项目名称:libdynd,代码行数:10,代码来源:callable_type.cpp

示例6: get_ndim

bool ndt::dim_fragment_type::operator==(const base_type &rhs) const {
  if (this == &rhs) {
    return true;
  } else if (rhs.get_id() != dim_fragment_id) {
    return false;
  } else {
    const dim_fragment_type *dft = static_cast<const dim_fragment_type *>(&rhs);
    return get_ndim() == rhs.get_ndim() &&
           memcmp(m_tagged_dims.get(), dft->m_tagged_dims.get(), get_ndim() * sizeof(intptr_t)) == 0;
  }
}
开发者ID:insertinterestingnamehere,项目名称:libdynd,代码行数:11,代码来源:dim_fragment_type.cpp

示例7:

bool ndt::adapt_type::operator==(const base_type &rhs) const
{
  if (this == &rhs) {
    return true;
  }

  if (rhs.get_id() != adapt_id) {
    return false;
  }

  return false;
}
开发者ID:corsy,项目名称:libdynd,代码行数:12,代码来源:adapt_type.cpp

示例8: if

bool ndt::type_type::operator==(const base_type &rhs) const
{
  if (this == &rhs) {
    return true;
  }
  else if (rhs.get_id() != type_id) {
    return false;
  }
  else {
    return m_pattern_tp == static_cast<const type_type *>(&rhs)->m_pattern_tp;
  }
}
开发者ID:arnavkj1995,项目名称:libdynd,代码行数:12,代码来源:type_type.cpp

示例9: if

bool ndt::string_type::operator==(const base_type &rhs) const
{
  if (this == &rhs) {
    return true;
  }
  else if (rhs.get_id() != string_id) {
    return false;
  }
  else {
    return true;
  }
}
开发者ID:aterrel,项目名称:libdynd-1,代码行数:12,代码来源:string_type.cpp

示例10: if

bool ndt::typevar_type::operator==(const base_type &rhs) const
{
  if (this == &rhs) {
    return true;
  }
  else if (rhs.get_id() != typevar_id) {
    return false;
  }
  else {
    const typevar_type *tvt = static_cast<const typevar_type *>(&rhs);
    return m_name == tvt->m_name;
  }
}
开发者ID:corsy,项目名称:libdynd,代码行数:13,代码来源:typevar_type.cpp

示例11: if

bool ndt::pointer_type::operator==(const base_type &rhs) const
{
  if (this == &rhs) {
    return true;
  }
  else if (rhs.get_id() != pointer_id) {
    return false;
  }
  else {
    const pointer_type *dt = static_cast<const pointer_type *>(&rhs);
    return m_target_tp == dt->m_target_tp;
  }
}
开发者ID:mindis,项目名称:libdynd,代码行数:13,代码来源:pointer_type.cpp

示例12: if

bool ndt::pow_dimsym_type::operator==(const base_type &rhs) const
{
  if (this == &rhs) {
    return true;
  }
  else if (rhs.get_id() != pow_dimsym_id) {
    return false;
  }
  else {
    const pow_dimsym_type *tvt = static_cast<const pow_dimsym_type *>(&rhs);
    return m_exponent == tvt->m_exponent && m_base_tp == tvt->m_base_tp && m_element_tp == tvt->m_element_tp;
  }
}
开发者ID:mindis,项目名称:libdynd,代码行数:13,代码来源:pow_dimsym_type.cpp

示例13: if

bool ndt::tuple_type::operator==(const base_type &rhs) const
{
  if (this == &rhs) {
    return true;
  }
  else if (rhs.get_id() != tuple_id) {
    return false;
  }
  else {
    const tuple_type *dt = static_cast<const tuple_type *>(&rhs);
    return get_data_alignment() == dt->get_data_alignment() && m_field_types == dt->m_field_types &&
           m_variadic == dt->m_variadic;
  }
}
开发者ID:corsy,项目名称:libdynd,代码行数:14,代码来源:tuple_type.cpp

示例14:

bool ndt::categorical_type::operator==(const base_type &rhs) const
{
  if (this == &rhs)
    return true;
  if (rhs.get_id() != categorical_id)
    return false;
  if (!m_categories.equals_exact(static_cast<const categorical_type &>(rhs).m_categories))
    return false;
  if (!m_category_index_to_value.equals_exact(static_cast<const categorical_type &>(rhs).m_category_index_to_value))
    return false;
  if (!m_value_to_category_index.equals_exact(static_cast<const categorical_type &>(rhs).m_value_to_category_index))
    return false;

  return true;
}
开发者ID:nyue,项目名称:libdynd,代码行数:15,代码来源:categorical_type.cpp

示例15:

 bool operator==(const base_type &rhs) const { return this == &rhs || rhs.get_id() == bytes_kind_id; }
开发者ID:insertinterestingnamehere,项目名称:libdynd,代码行数:1,代码来源:bytes_kind_type.hpp


注:本文中的base_type::get_id方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。