Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1# flake8: noqa 

2 

3from pandas.core.dtypes.common import ( 

4 is_array_like, 

5 is_bool, 

6 is_bool_dtype, 

7 is_categorical, 

8 is_categorical_dtype, 

9 is_complex, 

10 is_complex_dtype, 

11 is_datetime64_any_dtype, 

12 is_datetime64_dtype, 

13 is_datetime64_ns_dtype, 

14 is_datetime64tz_dtype, 

15 is_dict_like, 

16 is_dtype_equal, 

17 is_extension_array_dtype, 

18 is_extension_type, 

19 is_file_like, 

20 is_float, 

21 is_float_dtype, 

22 is_hashable, 

23 is_int64_dtype, 

24 is_integer, 

25 is_integer_dtype, 

26 is_interval, 

27 is_interval_dtype, 

28 is_iterator, 

29 is_list_like, 

30 is_named_tuple, 

31 is_number, 

32 is_numeric_dtype, 

33 is_object_dtype, 

34 is_period_dtype, 

35 is_re, 

36 is_re_compilable, 

37 is_scalar, 

38 is_signed_integer_dtype, 

39 is_sparse, 

40 is_string_dtype, 

41 is_timedelta64_dtype, 

42 is_timedelta64_ns_dtype, 

43 is_unsigned_integer_dtype, 

44 pandas_dtype, 

45)