Visit ComfyUI Online for ready-to-use ComfyUI environment
Converts integer values to a list for aggregation and processing in EasyApi workflows.
The IntToList
node is designed to convert one or two integer values into a list. This node is particularly useful when you need to aggregate integer values into a single list structure for further processing or manipulation within your workflow. By providing a straightforward method to bundle integers into a list, it simplifies the handling of multiple integer inputs and ensures they can be easily passed to subsequent nodes that require list inputs. This node is part of the EasyApi/Integer category, emphasizing its role in simplifying integer operations within the EasyApi framework.
int_a
is a required input parameter that represents the first integer to be included in the list. This parameter is mandatory and must be provided for the node to function. The value of int_a
will be the first element in the resulting list. There are no specific minimum or maximum values for this parameter, but it must be a valid integer.
int_b
is an optional input parameter that represents the second integer to be included in the list. If provided, this integer will be appended to the list after int_a
. This parameter allows for flexibility in creating lists with either one or two integers. Similar to int_a
, there are no specific minimum or maximum values, but it must be a valid integer if used.
The output of the IntToList
node is a list containing the provided integer values. If only int_a
is provided, the list will contain a single element. If both int_a
and int_b
are provided, the list will contain two elements. This output is crucial for scenarios where subsequent nodes require a list input, enabling seamless integration and further processing of the integer values.
int_a
parameter.int_a
and int_b
parameters.int_a
int_a
parameter is mandatory and must be provided for the node to function.int_a
parameter.int_a
or int_b
int_a
and int_b
must be valid integers. Providing a non-integer value will cause an error.int_a
and int_b
are integers. If necessary, convert any non-integer inputs to integers before using this node.© Copyright 2024 RunComfy. All Rights Reserved.