| 175 | */ |
| 176 | template<df_object T> |
| 177 | T *CheckDFObject(lua_State *state, int val_index, bool exact_type = false) { |
| 178 | return (T*)CheckDFObject(state, df::identity_traits<T>::get(), val_index, exact_type); |
| 179 | } |
| 180 | |
| 181 | /** |
| 182 | * Assign the value at val_index to the target using df.assign(). |