Yohohohohohooho | Sanrei Aya
Sanrei Aya


Server : LiteSpeed
System : Linux barito.iixcp.rumahweb.net 5.14.0-611.49.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Apr 21 16:39:08 EDT 2026 x86_64
User : elvh3918 ( 1528)
PHP Version : 8.2.31
Disable Function : mail
Directory :  /usr/lib/python3.9/site-packages/ansible/plugins/filter/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //usr/lib/python3.9/site-packages/ansible/plugins/filter/flatten.yml
DOCUMENTATION:
  name: flatten
  version_added: "2.5"
  short_description: flatten lists within a list
  description:
    - For a given list, take any elements that are lists and insert their elements into the parent list directly.
  positional: _input, levels, skip_nulls
  options:
    _input:
      description: First dictionary to combine.
      type: dict
      required: true
    levels:
      description: Number of recursive list depths to flatten.
      type: int
    skip_nulls:
      description: Skip C(null)/C(None) elements when inserting into the top list.
      type: bool
      default: true

EXAMPLES: |

    # [1,2,3,4,5,6]
    flat: "{{ [1 , 2, [3, [4, 5]], 6] | flatten }}"

    # [1,2,3,[4,5],6]
    flatone: "{{ [1, 2, [3, [4, 5]], 6] | flatten(1) }}"

RETURN:
  _value:
    description: The flattened list.
    type: list

Yohohohohohooho | Sanrei Aya